ORIGINAL
Loading...
Searching...
No Matches
config.h
Go to the documentation of this file.
1#ifndef CONFIG_H
2#define CONFIG_H
3
10
11#include "cstdint"
12
13namespace original {
14
15 using integer = std::int64_t;
16
17 using u_integer = std::uint32_t;
18}
19
20#endif //CONFIG_H
Main namespace for the project Original.
Definition algorithms.h:21
std::uint32_t u_integer
32-bit unsigned integer type for sizes/indexes
Definition config.h:17
std::int64_t integer
64-bit signed integer type for arithmetic operations
Definition config.h:15