summaryrefslogtreecommitdiff
path: root/src/prop/prop_engine.cpp
diff options
context:
space:
mode:
authorKshitij Bansal <kshitij@cs.nyu.edu>2012-06-14 16:46:44 +0000
committerKshitij Bansal <kshitij@cs.nyu.edu>2012-06-14 16:46:44 +0000
commit8da791368c6d8cad97ff81b2b540c90ffdebc7ff (patch)
tree2b628eb20576338f6bb0dd8a425c7fcbd37b7a87 /src/prop/prop_engine.cpp
parent61acf8c8d621799984e622b65598caec4acceb52 (diff)
This commit:
* enables decision heuristic (justification) for QF_BV and QF_AUFBV * disables a failing regression in aufbv (because of equality engine assert failure trigerred by above change) * moves around the init procedure smt_engine * destruction time issues because of moving this -- still to be fixed, currently get around by not destucting stuff in driver
Diffstat (limited to 'src/prop/prop_engine.cpp')
-rw-r--r--src/prop/prop_engine.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/prop/prop_engine.cpp b/src/prop/prop_engine.cpp
index f3904549f..0f138eb65 100644
--- a/src/prop/prop_engine.cpp
+++ b/src/prop/prop_engine.cpp
@@ -112,16 +112,6 @@ void PropEngine::assertLemma(TNode node, bool negated, bool removable) {
Dump("lemmas") << AssertCommand(BoolExpr(node.toExpr()));
}
- /* Tell decision engine */
- // if(negated) {
- // NodeBuilder<> nb(kind::NOT);
- // nb << node;
- // d_decisionEngine->addAssertion(nb.constructNode());
- // } else {
- // d_decisionEngine->addAssertion(node);
- // }
-
- //TODO This comment is now false
// Assert as removable
d_cnfStream->convertAndAssert(node, removable, negated);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback