summaryrefslogtreecommitdiff
path: root/src/theory/arith/error_set.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/error_set.h')
-rw-r--r--src/theory/arith/error_set.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/theory/arith/error_set.h b/src/theory/arith/error_set.h
index 8839739a2..9e3e7c630 100644
--- a/src/theory/arith/error_set.h
+++ b/src/theory/arith/error_set.h
@@ -152,8 +152,16 @@ public:
inline ArithVar getVariable() const { return d_variable; }
bool isRelaxed() const { return d_relaxed; }
- void setRelaxed(){ Assert(!d_relaxed); d_relaxed = true; }
- void setUnrelaxed(){ Assert(d_relaxed); d_relaxed = false; }
+ void setRelaxed()
+ {
+ Assert(!d_relaxed);
+ d_relaxed = true;
+ }
+ void setUnrelaxed()
+ {
+ Assert(d_relaxed);
+ d_relaxed = false;
+ }
inline int sgn() const { return d_sgn; }
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback