summaryrefslogtreecommitdiff
path: root/src/theory/arith/nl/ext/proof_checker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/nl/ext/proof_checker.cpp')
-rw-r--r--src/theory/arith/nl/ext/proof_checker.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/arith/nl/ext/proof_checker.cpp b/src/theory/arith/nl/ext/proof_checker.cpp
index 67679d7a6..7acee487d 100644
--- a/src/theory/arith/nl/ext/proof_checker.cpp
+++ b/src/theory/arith/nl/ext/proof_checker.cpp
@@ -37,9 +37,9 @@ Node ExtProofRuleChecker::checkInternal(PfRule id,
const std::vector<Node>& args)
{
NodeManager* nm = NodeManager::currentNM();
- auto zero = nm->mkConst<Rational>(0);
- auto one = nm->mkConst<Rational>(1);
- auto mone = nm->mkConst<Rational>(-1);
+ auto zero = nm->mkConst<Rational>(CONST_RATIONAL, 0);
+ auto one = nm->mkConst<Rational>(CONST_RATIONAL, 1);
+ auto mone = nm->mkConst<Rational>(CONST_RATIONAL, -1);
auto pi = nm->mkNullaryOperator(nm->realType(), Kind::PI);
auto mpi = nm->mkNode(Kind::MULT, mone, pi);
Trace("nl-ext-checker") << "Checking " << id << std::endl;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback