mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
11 lines
203 B
C++
11 lines
203 B
C++
#ifndef APPS_CONSTANT_H
|
|
#define APPS_CONSTANT_H
|
|
|
|
class Constant {
|
|
public:
|
|
constexpr static int LargeNumberOfSignificantDigits = 7;
|
|
constexpr static int ShortNumberOfSignificantDigits = 4;
|
|
};
|
|
|
|
#endif
|