summaryrefslogtreecommitdiff
path: root/src/theory/arith/nl/iand_solver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/nl/iand_solver.cpp')
-rw-r--r--src/theory/arith/nl/iand_solver.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/arith/nl/iand_solver.cpp b/src/theory/arith/nl/iand_solver.cpp
index b773f6baf..5d4862307 100644
--- a/src/theory/arith/nl/iand_solver.cpp
+++ b/src/theory/arith/nl/iand_solver.cpp
@@ -47,9 +47,9 @@ IAndSolver::IAndSolver(Env& env,
NodeManager* nm = NodeManager::currentNM();
d_false = nm->mkConst(false);
d_true = nm->mkConst(true);
- d_zero = nm->mkConst(Rational(0));
- d_one = nm->mkConst(Rational(1));
- d_two = nm->mkConst(Rational(2));
+ d_zero = nm->mkConst(CONST_RATIONAL, Rational(0));
+ d_one = nm->mkConst(CONST_RATIONAL, Rational(1));
+ d_two = nm->mkConst(CONST_RATIONAL, Rational(2));
}
IAndSolver::~IAndSolver() {}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback