summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2012-09-26 21:44:22 +0000
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2012-09-26 21:44:22 +0000
commitc6d2a808e4981f81e4a638d25582e8542e89b716 (patch)
treec2b7222a92fd1bf967e9074a97643d3bbd80a1e2 /src/theory/theory_engine.cpp
parentc1e936b9cec3d731778b95504770e48c28fd1a65 (diff)
updates to model generation : do not modify equality engine during getValue, other minor changes, still problems with constants not being specified for some eq classes
Diffstat (limited to 'src/theory/theory_engine.cpp')
-rw-r--r--src/theory/theory_engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp
index d69f43908..932f11f74 100644
--- a/src/theory/theory_engine.cpp
+++ b/src/theory/theory_engine.cpp
@@ -86,7 +86,7 @@ TheoryEngine::TheoryEngine(context::Context* context,
d_quantEngine = new QuantifiersEngine(context, this);
// build model information if applicable
- d_curr_model = new theory::DefaultModel( context, "DefaultModel", true );
+ d_curr_model = new theory::TheoryModel( context, "DefaultModel", true );
d_curr_model_builder = new theory::TheoryEngineModelBuilder( this );
Rewriter::init();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback