Minor fix to last commit.
authorajreynol <andrew.j.reynolds@gmail.com>
Wed, 31 May 2017 18:08:20 +0000 (13:08 -0500)
committerajreynol <andrew.j.reynolds@gmail.com>
Wed, 31 May 2017 18:08:20 +0000 (13:08 -0500)
src/theory/arith/theory_arith_private.cpp

index 23b846946d502e57465dd95ccdb0464547fb0ea4..250317b7831a0f2b8edd63060c786fae937ae42a 100644 (file)
@@ -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>();