You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: GlobalCode/AltNum/MediumDec.hpp
+2-8Lines changed: 2 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -27,23 +27,17 @@
27
27
28
28
classMediumDec;
29
29
30
-
//Bitwise based operation code likely mostly incorrect in calculations(not that is important for moment)
31
30
//Operations and functions will mess up if IntValue overflows/underflows or reaches exactly -2147483648 which is used to represent negative zero when has decimal values
32
31
33
-
//Preprocessor Switches
34
-
/*
35
-
*/
36
-
37
32
/// <summary>
38
33
/// Alternative Non-Integer number representation with focus on accuracy and partially speed within certain range
39
34
/// Represents +- 2147483647.999999999 with 100% consistency of accuracy for most operations as long as don't get too small
40
-
// Use MediumDec instead if want to use variant of this class that supports radical representation to save some extra precision
35
+
// Use AltDec instead if want to use variant of this class that supports radical representation to save some extra precision
41
36
/// (8 bytes worth of Variable Storage inside class for each instance)
0 commit comments