1 #pragma once 2 3 #include <string> 4 5 /** Boolean variable controlling whether tuning is enabled 6 * during this run. 7 */ 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; 14