CDOhash_map(Context* context,
CDHashMap<Key, Data, HashFcn>* map,
- const Key& key,
+ const Key& key,
const Data& data,
bool atLevelZero = false,
bool allocatedInCMM = false) :
/** 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);
}