You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
628 B
30 lines
628 B
#include "initialize.h"
|
|
|
|
#include "src/utility/macros.h"
|
|
#include "src/settings/SettingsManager.h"
|
|
#include "src/settings/modules/DebugSettings.h"
|
|
|
|
int storm_runtime_loglevel = STORM_LOGLEVEL_WARN;
|
|
|
|
namespace storm {
|
|
namespace utility {
|
|
|
|
void initializeLogger() {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
void setUp() {
|
|
initializeLogger();
|
|
std::cout.precision(10);
|
|
}
|
|
|
|
void cleanUp() {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
void initializeFileLogging() {
|
|
// FIXME.
|
|
}
|
|
|
|
}
|
|
}
|