mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
a748e7f239
Internal floating point (FP) calculations should be performed using double unless there is a very good reason. This avoids headaches with conversions. Indeed, the vast majority of FP calculations were already done using double. This patch adapts most remaining calculations. Not converted where things that were based on binary representations and variables which weren't used anyway. An analysis of all instances follows: core/plannernotes.c, l.404: This was a comparison between two floats. On the left side, first an integer was cast to float then multiplied with and integer and divided by a constant double. The right hand side was an integer cast to a float. Simply divide by 1000.0 first to convert to double and continue with calculations. On the right hand side, remove the cast, because the integer will be implicitely cast to double for comparison. This conversion actually emits less instructions, because no conversion to double and back is performed. core/planner.c, l.613: Same analysis as previous case. subsurface-desktop-main.cpp, l.155: A local variable representing the version OpenGL version. Turn this into integer logic. Not only does this avoid dreaded FP rounding issues, it also works correctly for minor version > 10 (not that such a thing is to be expected anytime soon). abstractpreferenceswidget.[h/cpp]: A widget where the position is described as a float. Turn into double. desktop-widgets/divelogexportdialog.cpp, l.313: total_weight is described as float. Use double arithmetics instead. This instance fixes a truncation warning emitted by gcc. |
||
---|---|---|
.. | ||
abstractpreferenceswidget.cpp | ||
abstractpreferenceswidget.h | ||
CMakeLists.txt | ||
preferences_defaults.cpp | ||
preferences_defaults.h | ||
preferences_defaults.ui | ||
preferences_georeference.cpp | ||
preferences_georeference.h | ||
preferences_graph.cpp | ||
preferences_graph.h | ||
preferences_graph.ui | ||
preferences_language.cpp | ||
preferences_language.h | ||
preferences_network.cpp | ||
preferences_network.h | ||
preferences_network.ui | ||
preferences_units.cpp | ||
preferences_units.h | ||
preferences_units.ui | ||
preferencesdialog.cpp | ||
preferencesdialog.h | ||
prefs_georeference.ui | ||
prefs_language.ui |