summaryrefslogtreecommitdiff
path: root/src/decision/justification_heuristic.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/decision/justification_heuristic.cpp')
-rw-r--r--src/decision/justification_heuristic.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decision/justification_heuristic.cpp b/src/decision/justification_heuristic.cpp
index 72dea907c..891d89cc5 100644
--- a/src/decision/justification_heuristic.cpp
+++ b/src/decision/justification_heuristic.cpp
@@ -480,7 +480,7 @@ JustificationHeuristic::findSplitterRec(TNode node, SatValue desiredVal)
d_curDecision = SatLiteral(v, /* negated = */ desiredVal != SAT_VALUE_TRUE );
Trace("decision-node") << "[decision-node] requesting split on " << d_curDecision
<< ", node: " << node
- << ", polarity: " << (desiredVal ? "true" : "false") << std::endl;
+ << ", polarity: " << (desiredVal == SAT_VALUE_TRUE ? "true" : "false") << std::endl;
return FOUND_SPLITTER;
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback