summaryrefslogtreecommitdiff
path: root/src/decision/decision_engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/decision/decision_engine.h')
-rw-r--r--src/decision/decision_engine.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/decision/decision_engine.h b/src/decision/decision_engine.h
index cda696a03..8173c7269 100644
--- a/src/decision/decision_engine.h
+++ b/src/decision/decision_engine.h
@@ -144,9 +144,9 @@ public:
/** Is the DecisionEngine in a state where it has solved everything? */
bool isDone() {
Trace("decision") << "DecisionEngine::isDone() returning "
- << (d_result != SAT_VALUE_UNKNOWN)
- << (d_result != SAT_VALUE_UNKNOWN ? "true" : "false")
- << std::endl;
+ << (d_result != SAT_VALUE_UNKNOWN)
+ << (d_result != SAT_VALUE_UNKNOWN ? "true" : "false")
+ << std::endl;
return (d_result != SAT_VALUE_UNKNOWN);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback