blob: 7f1cb63c8a42ec34c24f1a3d9ceddc7edc0ee8fe [file] [log] [blame]
Patrick Venturec32e3fc2019-02-28 10:01:11 -08001#pragma once
2
3#include <string>
4
Patrick Venturede79ee02019-05-08 14:50:00 -07005/** Boolean variable controlling whether tuning is enabled
Patrick Venturec32e3fc2019-02-28 10:01:11 -08006 * during this run.
7 */
Patrick Venturede79ee02019-05-08 14:50:00 -07008extern bool tuningEnabled;
9/** String variable with the folder for writing logs if logging is enabled.
10 */
11extern std::string loggingPath;
12/** Boolean variable whether loggingPath is non-empty. */
13extern bool loggingEnabled;
Bonnie Loc51ba912022-10-12 14:07:22 +080014
15/** Boolean variable controlling whether debug mode is enabled
16 * during this run.
17 */
18extern bool debugEnabled;