summaryrefslogtreecommitdiff
path: root/src/theory/arith
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith')
-rw-r--r--src/theory/arith/theory_arith_private.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/arith/theory_arith_private.cpp b/src/theory/arith/theory_arith_private.cpp
index 23b846946..250317b78 100644
--- a/src/theory/arith/theory_arith_private.cpp
+++ b/src/theory/arith/theory_arith_private.cpp
@@ -1214,7 +1214,7 @@ Node TheoryArithPrivate::ppRewriteTerms(TNode n) {
NodeMap::const_iterator it = d_int_div_skolem.find( rw );
if( it==d_int_div_skolem.end() ){
intVar = nm->mkSkolem("linearIntDiv", nm->integerType(), "the result of an intdiv-by-k term");
- d_div_skolem[rw] = intVar;
+ d_int_div_skolem[rw] = intVar;
Node lem;
if (den.isConst()) {
const Rational& rat = den.getConst<Rational>();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback