projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cf640b7
)
Another expensive function call in a Debug trace
author
Clark Barrett
<barrett@cs.nyu.edu>
Sun, 27 May 2012 00:39:27 +0000
(
00:39
+0000)
committer
Clark Barrett
<barrett@cs.nyu.edu>
Sun, 27 May 2012 00:39:27 +0000
(
00:39
+0000)
src/prop/theory_proxy.cpp
patch
|
blob
|
history
diff --git
a/src/prop/theory_proxy.cpp
b/src/prop/theory_proxy.cpp
index 7366afcafbb56659a5d14f1527a8a052babd92f3..ccb26b6f02522133226fd3dcaf91a58ee3219643 100644
(file)
--- a/
src/prop/theory_proxy.cpp
+++ b/
src/prop/theory_proxy.cpp
@@
-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]));
}
}