From 28096861af9b01e4bad6059346446d97b9708cb7 Mon Sep 17 00:00:00 2001 From: Clark Barrett Date: Sun, 27 May 2012 00:39:27 +0000 Subject: [PATCH] Another expensive function call in a Debug trace --- src/prop/theory_proxy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/prop/theory_proxy.cpp b/src/prop/theory_proxy.cpp index 7366afcaf..ccb26b6f0 100644 --- a/src/prop/theory_proxy.cpp +++ b/src/prop/theory_proxy.cpp @@ -48,7 +48,7 @@ void TheoryProxy::theoryPropagate(std::vector& output) { std::vector 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])); } } -- 2.30.2