From 7df24c61c7998e1485ab75219078deaf1455bd71 Mon Sep 17 00:00:00 2001 From: Kshitij Bansal Date: Tue, 14 Oct 2014 11:58:01 -0400 Subject: [PATCH] amend prvs commit --- src/decision/justification_heuristic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } -- 2.30.2