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.
22 lines
347 B
22 lines
347 B
#ifndef STORM_UTILITY_INITIALIZE_H_
|
|
#define STORM_UTILITY_INITIALIZE_H_
|
|
|
|
#include "InitializeLogging.h"
|
|
|
|
/*!
|
|
* Performs some necessary initializations.
|
|
*/
|
|
void setUp() {
|
|
// Increase the precision of output.
|
|
std::cout.precision(10);
|
|
}
|
|
|
|
/*!
|
|
* Performs some necessary clean-up.
|
|
*/
|
|
void cleanUp() {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
|
|
#endif
|