1c32e3fc5SPatrick Venture #pragma once
2c32e3fc5SPatrick Venture 
3c32e3fc5SPatrick Venture #include <string>
4c32e3fc5SPatrick Venture 
5de79ee05SPatrick Venture /** Boolean variable controlling whether tuning is enabled
6c32e3fc5SPatrick Venture  * during this run.
7c32e3fc5SPatrick Venture  */
8de79ee05SPatrick Venture extern bool tuningEnabled;
9de79ee05SPatrick Venture /** String variable with the folder for writing logs if logging is enabled.
10de79ee05SPatrick Venture  */
11de79ee05SPatrick Venture extern std::string loggingPath;
12de79ee05SPatrick Venture /** Boolean variable whether loggingPath is non-empty. */
13de79ee05SPatrick Venture extern bool loggingEnabled;
14*c51ba919SBonnie Lo 
15*c51ba919SBonnie Lo /** Boolean variable controlling whether debug mode is enabled
16*c51ba919SBonnie Lo  * during this run.
17*c51ba919SBonnie Lo  */
18*c51ba919SBonnie Lo extern bool debugEnabled;
19