Patrick Venture | c32e3fc | 2019-02-28 10:01:11 -0800 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include <string> |
| 4 | |
Patrick Venture | de79ee0 | 2019-05-08 14:50:00 -0700 | [diff] [blame] | 5 | /** Boolean variable controlling whether tuning is enabled |
Patrick Venture | c32e3fc | 2019-02-28 10:01:11 -0800 | [diff] [blame] | 6 | * during this run. |
| 7 | */ |
Patrick Venture | de79ee0 | 2019-05-08 14:50:00 -0700 | [diff] [blame] | 8 | extern bool tuningEnabled; |
| 9 | /** String variable with the folder for writing logs if logging is enabled. |
| 10 | */ |
| 11 | extern std::string loggingPath; |
| 12 | /** Boolean variable whether loggingPath is non-empty. */ |
| 13 | extern bool loggingEnabled; |