diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-10-07 13:37:15 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-10-07 13:37:15 +0200 |
commit | 95080ba63ae3a53b2317739154d4c8d5d926d104 (patch) | |
tree | 0433e0a7d862ccba2d4fc52af68220be7725078b | |
parent | 7abfd9593409bb0c16f4ee6d19fea14d7e85c57d (diff) | |
parent | a6575143d71748b03cee7bd7e9ee23967fa33ba9 (diff) |
* unstable:
qfc: increase precision
-rw-r--r-- | qfunctionconfigurator/functionconfig.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qfunctionconfigurator/functionconfig.h b/qfunctionconfigurator/functionconfig.h index d180928f..149d5989 100644 --- a/qfunctionconfigurator/functionconfig.h +++ b/qfunctionconfigurator/functionconfig.h @@ -21,7 +21,7 @@ class Map { private: static constexpr int value_count = 10000; using num = double; - using integral = std::uint16_t; + using integral = std::uint32_t; static constexpr integral integral_max = std::numeric_limits<integral>::max(); struct State { |