summaryrefslogtreecommitdiff
path: root/src/preprocessing/passes/int_to_bv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/preprocessing/passes/int_to_bv.cpp')
-rw-r--r--src/preprocessing/passes/int_to_bv.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/preprocessing/passes/int_to_bv.cpp b/src/preprocessing/passes/int_to_bv.cpp
index 41d52d1ae..e6b5a4bca 100644
--- a/src/preprocessing/passes/int_to_bv.cpp
+++ b/src/preprocessing/passes/int_to_bv.cpp
@@ -105,9 +105,9 @@ Node intToBVMakeBinary(TNode n, NodeMap& cache)
Node IntToBV::intToBV(TNode n, NodeMap& cache)
{
- int size = options::solveIntAsBV();
+ int size = options().smt.solveIntAsBV;
AlwaysAssert(size > 0);
- AlwaysAssert(!options::incrementalSolving());
+ AlwaysAssert(!options().base.incrementalSolving);
NodeManager* nm = NodeManager::currentNM();
SkolemManager* sm = nm->getSkolemManager();
@@ -203,7 +203,7 @@ Node IntToBV::intToBV(TNode n, NodeMap& cache)
// Mark the substitution and continue
Node result = builder;
- result = Rewriter::rewrite(result);
+ result = rewrite(result);
cache[current] = result;
}
else
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback