summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/bounded_integers.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2013-05-23 16:45:47 -0500
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2013-05-23 16:45:47 -0500
commitfbc81b67ac1cfeb3afe37f3299180177faaa1ca6 (patch)
tree69b3028b333262b414ed188d1f575012793e0e2b /src/theory/quantifiers/bounded_integers.cpp
parentfee510eacd6ea9d35906218ce3d4b88f7d86f8b1 (diff)
Refactoring to prepare for MBQI with integer quantification. Minor bug fixes.
Diffstat (limited to 'src/theory/quantifiers/bounded_integers.cpp')
-rwxr-xr-xsrc/theory/quantifiers/bounded_integers.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/quantifiers/bounded_integers.cpp b/src/theory/quantifiers/bounded_integers.cpp
index 4492e6d2d..e33cd2131 100755
--- a/src/theory/quantifiers/bounded_integers.cpp
+++ b/src/theory/quantifiers/bounded_integers.cpp
@@ -355,8 +355,8 @@ void BoundedIntegers::getBoundValues( Node f, Node v, RepSetIterator * rsi, Node
}
}
Trace("bound-int-rsi") << "Get value in model for..." << l << " and " << u << std::endl;
- l = d_quantEngine->getModelEngine()->getModelBuilder()->getCurrentModelValue( d_quantEngine->getModel(), l );
- u = d_quantEngine->getModelEngine()->getModelBuilder()->getCurrentModelValue( d_quantEngine->getModel(), u );
+ l = d_quantEngine->getModel()->getCurrentModelValue( l );
+ u = d_quantEngine->getModel()->getCurrentModelValue( u );
Trace("bound-int-rsi") << "Value is " << l << " ... " << u << std::endl;
return;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback