summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2012-09-10 22:29:17 +0000
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2012-09-10 22:29:17 +0000
commit680af6f4dc9e5d6616918e8fde18cd64774d0df5 (patch)
tree5ec89cf302d5bc93ff1da80efa2125152d1c71b6 /src/theory/quantifiers
parent586b07613702027fc685e55994e2a325961ca5b7 (diff)
modified getValue to return Expr instead of Node
Diffstat (limited to 'src/theory/quantifiers')
-rw-r--r--src/theory/quantifiers/first_order_model.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/first_order_model.cpp b/src/theory/quantifiers/first_order_model.cpp
index c3be1cdaf..b03261195 100644
--- a/src/theory/quantifiers/first_order_model.cpp
+++ b/src/theory/quantifiers/first_order_model.cpp
@@ -274,7 +274,7 @@ Node FirstOrderModel::evaluateTerm( Node n, int& depIndex, RepSetIterator* ri ){
if( !n.hasAttribute(InstConstantAttribute()) ){
//if evaluating a ground term, just consult the standard getValue functionality
depIndex = -1;
- return getValue( n );
+ return getModelValue( n );
}else{
Node val;
depIndex = ri->getNumTerms()-1;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback