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.
21 lines
431 B
21 lines
431 B
|
2 years ago
|
#ifndef MEDUSA_UTILS_HPP_
|
||
|
|
#define MEDUSA_UTILS_HPP_
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @file
|
||
|
|
* Header for Utils module.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "Config.hpp"
|
||
|
|
|
||
|
|
#include "bits/utils/Stopwatch.hpp"
|
||
|
|
#include "bits/utils/Timer.hpp"
|
||
|
|
#include "bits/utils/assert.hpp"
|
||
|
|
#include "bits/utils/memutils.hpp"
|
||
|
|
#include "bits/utils/numutils.hpp"
|
||
|
|
#include "bits/utils/print.hpp"
|
||
|
|
#include "bits/utils/randutils.hpp"
|
||
|
|
#include "bits/utils/stdtypesutils.hpp"
|
||
|
|
|
||
|
|
#endif // MEDUSA_UTILS_HPP_
|