summaryrefslogtreecommitdiff
path: root/src/smt
diff options
context:
space:
mode:
Diffstat (limited to 'src/smt')
-rw-r--r--src/smt/smt_engine.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index 3f1111879..d11130aac 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -191,13 +191,13 @@ SmtEngine::SmtEngine(ExprManager* em) throw(AssertionException) :
d_theoryEngine = new TheoryEngine(d_context);
// Add the theories
- d_theoryEngine->addTheory<theory::builtin::TheoryBuiltin>();
- d_theoryEngine->addTheory<theory::booleans::TheoryBool>();
- d_theoryEngine->addTheory<theory::arith::TheoryArith>();
- d_theoryEngine->addTheory<theory::arrays::TheoryArrays>();
- d_theoryEngine->addTheory<theory::bv::TheoryBV>();
- d_theoryEngine->addTheory<theory::datatypes::TheoryDatatypes>();
- d_theoryEngine->addTheory<theory::uf::TheoryUF>();
+ d_theoryEngine->addTheory<theory::builtin::TheoryBuiltin>(theory::THEORY_BUILTIN);
+ d_theoryEngine->addTheory<theory::booleans::TheoryBool>(theory::THEORY_BOOL);
+ d_theoryEngine->addTheory<theory::arith::TheoryArith>(theory::THEORY_ARITH);
+ d_theoryEngine->addTheory<theory::arrays::TheoryArrays>(theory::THEORY_ARRAY);
+ d_theoryEngine->addTheory<theory::bv::TheoryBV>(theory::THEORY_BV);
+ d_theoryEngine->addTheory<theory::datatypes::TheoryDatatypes>(theory::THEORY_DATATYPES);
+ d_theoryEngine->addTheory<theory::uf::TheoryUF>(theory::THEORY_UF);
d_propEngine = new PropEngine(d_theoryEngine, d_context);
d_theoryEngine->setPropEngine(d_propEngine);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback