Files
Upsilon/apps/constant.h
Émilie Feral f4a580884b [apps/graph] Use the poincare derivative calculation to compute function
derivative

Change-Id: I2b4d9b443935ad789e898e253a22f9d2ab652b6a
2017-01-15 20:04:58 +01:00

13 lines
339 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 FloatBufferSizeInDecimalMode = 11;
constexpr static int NumberOfDigitsInMantissaInDecimalMode = 4;
};
#endif