summaryrefslogtreecommitdiff
path: root/src/prop/prop_engine.cpp
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2010-11-12 04:39:54 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2010-11-12 04:39:54 +0000
commit0eb2a0362fee06023f0668e94bb566b69f4a7cda (patch)
tree03910431f2185e2a668da5a3e5d9e61220c67fdc /src/prop/prop_engine.cpp
parent9f935c74842084fad55e2c0efaf963791c0ebba9 (diff)
Some bug fixes in the SAT for lemmas, and an experiment with a more complete (wr propagation) splitter in arithmetic.
Diffstat (limited to 'src/prop/prop_engine.cpp')
-rw-r--r--src/prop/prop_engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/prop/prop_engine.cpp b/src/prop/prop_engine.cpp
index 45d941553..d89b8ec2f 100644
--- a/src/prop/prop_engine.cpp
+++ b/src/prop/prop_engine.cpp
@@ -82,7 +82,7 @@ void PropEngine::assertFormula(TNode node) {
void PropEngine::assertLemma(TNode node) {
Assert(d_inCheckSat, "Sat solver should be in solve()!");
- Debug("prop::lemma") << "assertLemma(" << node << ")" << endl;
+ Debug("prop::lemmas") << "assertLemma(" << node << ")" << endl;
// Assert as removable
d_cnfStream->convertAndAssert(node, true, false);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback