summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/smt/smt_engine.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index 76d4c973f..411d4ee3f 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -791,6 +791,9 @@ SmtEngine::~SmtEngine() throw() {
void SmtEngine::setLogic(const LogicInfo& logic) throw(ModalException) {
SmtScope smts(this);
+ if(d_fullyInited) {
+ throw ModalException("Cannot set logic in SmtEngine after the engine has finished initializing");
+ }
d_logic = logic;
setLogicInternal();
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback