summaryrefslogtreecommitdiff
path: root/src/smt
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2011-09-15 06:53:33 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2011-09-15 06:53:33 +0000
commit72f552ead344b13d90832222157b970ae3dec8ff (patch)
treeb02854356d5c5f98b3873f858f38b6762135bdc1 /src/smt
parent62a50760346e130345b24e8a14ad0dac0dca5d38 (diff)
additional stuff for sharing,
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