Another expensive function call in a Debug trace
authorClark Barrett <barrett@cs.nyu.edu>
Sun, 27 May 2012 00:39:27 +0000 (00:39 +0000)
committerClark Barrett <barrett@cs.nyu.edu>
Sun, 27 May 2012 00:39:27 +0000 (00:39 +0000)
src/prop/theory_proxy.cpp

index 7366afcafbb56659a5d14f1527a8a052babd92f3..ccb26b6f02522133226fd3dcaf91a58ee3219643 100644 (file)
@@ -48,7 +48,7 @@ void TheoryProxy::theoryPropagate(std::vector<SatLiteral>& output) {
   std::vector<TNode> outputNodes;
   d_theoryEngine->getPropagatedLiterals(outputNodes);
   for (unsigned i = 0, i_end = outputNodes.size(); i < i_end; ++ i) {
-    Debug("prop-explain") << "theoryPropagate() => " << outputNodes[i].toString() << std::endl;
+    Debug("prop-explain") << "theoryPropagate() => " << outputNodes[i] << std::endl;
     output.push_back(d_cnfStream->getLiteral(outputNodes[i]));
   }
 }