mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
12 lines
263 B
C++
12 lines
263 B
C++
#ifndef APPS_CONSTANT_H
|
|
#define APPS_CONSTANT_H
|
|
|
|
class Constant {
|
|
public:
|
|
constexpr static int LargeNumberOfSignificantDigits = 7;
|
|
constexpr static int MediumNumberOfSignificantDigits = 5;
|
|
constexpr static int ShortNumberOfSignificantDigits = 4;
|
|
};
|
|
|
|
#endif
|