summaryrefslogtreecommitdiff
path: root/src/theory/model.cpp
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2012-11-14 23:49:07 +0000
committerTim King <taking@cs.nyu.edu>2012-11-14 23:49:07 +0000
commit19abe15ccc1e310ae3f726b351b0023670ba7962 (patch)
tree66848c129df4493ab068885fcb0efcad53c5d5e5 /src/theory/model.cpp
parent8a672c060d2b3946c542c82bd6ca8f89892216ee (diff)
Fix for bug 407. mkAnonymousFunction() in the parser no longer uses ':'. CVC printer now properly prints LAMBDAs. Model builing now gives bound variables names that can be parsed bypresentation language.
Diffstat (limited to 'src/theory/model.cpp')
-rw-r--r--src/theory/model.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/model.cpp b/src/theory/model.cpp
index 0e1d90a74..72352f6d3 100644
--- a/src/theory/model.cpp
+++ b/src/theory/model.cpp
@@ -744,7 +744,7 @@ void TheoryEngineModelBuilder::processBuildModel(TheoryModel* m, bool fullModel)
}
ufmt.setDefaultValue( m, default_v );
ufmt.simplify();
- Node val = ufmt.getFunctionValue( "$x" );
+ Node val = ufmt.getFunctionValue( "_ufmt_" );
Trace("model-builder") << " Assigning (" << n << ") to (" << val << ")" << endl;
m->d_uf_models[n] = val;
//ufmt.debugPrint( std::cout, m );
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback