mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
12 lines
303 B
C++
12 lines
303 B
C++
#ifndef APPS_CONSTANT_H
|
|
#define APPS_CONSTANT_H
|
|
|
|
class Constant {
|
|
public:
|
|
constexpr static int FloatBufferSizeInScientificMode = 14;
|
|
constexpr static int NumberOfDigitsInMantissaInScientificMode = 7;
|
|
constexpr static int NumberOfDigitsInMantissaForDerivativeNumberInScientificMode = 3;
|
|
};
|
|
|
|
#endif
|