summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-rw-r--r--src/util/floatingpoint.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/util/floatingpoint.h b/src/util/floatingpoint.h
index 7b18d542a..af909dfa4 100644
--- a/src/util/floatingpoint.h
+++ b/src/util/floatingpoint.h
@@ -80,10 +80,12 @@ namespace CVC4 {
*/
enum CVC4_PUBLIC RoundingMode {
roundNearestTiesToEven = FE_TONEAREST,
- roundNearestTiesToAway,
roundTowardPositive = FE_UPWARD,
roundTowardNegative = FE_DOWNWARD,
- roundTowardZero = FE_TOWARDZERO
+ roundTowardZero = FE_TOWARDZERO,
+ // Initializes this to the diagonalization of the 4 other values.
+ roundNearestTiesToAway = (((~FE_TONEAREST) & 0x1) | ((~FE_UPWARD) & 0x2) |
+ ((~FE_DOWNWARD) & 0x4) | ((~FE_TOWARDZERO) & 0x8))
}; /* enum RoundingMode */
struct CVC4_PUBLIC RoundingModeHashFunction {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback