summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.cpp
diff options
context:
space:
mode:
authorClark Barrett <barrett@cs.nyu.edu>2012-11-29 00:59:06 +0000
committerClark Barrett <barrett@cs.nyu.edu>2012-11-29 00:59:06 +0000
commitff6ac38127fbb03e6c11a210b6b16d647b8785ea (patch)
treef656b1207ab75f0634593093ce5ed99a03f6c657 /src/theory/theory_engine.cpp
parent91673d6cefa63bc0f706101946e0c01fcd429071 (diff)
Fixing function models with Boolean terms. Also, LAMBDA's should not be const.
Diffstat (limited to 'src/theory/theory_engine.cpp')
-rw-r--r--src/theory/theory_engine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp
index 42fe10cb9..1742a32a5 100644
--- a/src/theory/theory_engine.cpp
+++ b/src/theory/theory_engine.cpp
@@ -106,8 +106,8 @@ TheoryEngine::TheoryEngine(context::Context* context,
d_quantEngine = new QuantifiersEngine(context, this);
// build model information if applicable
- d_curr_model = new theory::TheoryModel( userContext, "DefaultModel", true );
- d_curr_model_builder = new theory::TheoryEngineModelBuilder( this );
+ d_curr_model = new theory::TheoryModel(userContext, "DefaultModel", true);
+ d_curr_model_builder = new theory::TheoryEngineModelBuilder(this);
StatisticsRegistry::registerStat(&d_combineTheoriesTime);
d_true = NodeManager::currentNM()->mkConst<bool>(true);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback