summaryrefslogtreecommitdiff
path: root/src/theory/arith/dio_solver.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-06-14 14:32:51 +0000
committerMorgan Deters <mdeters@gmail.com>2012-06-14 14:32:51 +0000
commitde6c0b0929f23fd3d01ae4c8bd3b93d4f484b7c7 (patch)
treef81881044a187571c56631466a2a9e0622f1d2c9 /src/theory/arith/dio_solver.cpp
parentc1b87cb541768fa9811cef643e43fdc09091c353 (diff)
The "no-tears-in-competition-mode" commit. Change all (non-driver, non-SAT-solver) uses of std::cout to the Message stream, and all uses of std::cerr to the Warning stream.
Diffstat (limited to 'src/theory/arith/dio_solver.cpp')
-rw-r--r--src/theory/arith/dio_solver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/arith/dio_solver.cpp b/src/theory/arith/dio_solver.cpp
index 28fe86c70..1ad6dd395 100644
--- a/src/theory/arith/dio_solver.cpp
+++ b/src/theory/arith/dio_solver.cpp
@@ -776,8 +776,8 @@ void DioSolver::debugPrintTrail(DioSolver::TrailIndex i) const{
const SumPair& eq = d_trail[i].d_eq;
const Polynomial& proof = d_trail[i].d_proof;
- cout << "d_trail["<<i<<"].d_eq = " << eq.getNode() << endl;
- cout << "d_trail["<<i<<"].d_proof = " << proof.getNode() << endl;
+ Message() << "d_trail["<<i<<"].d_eq = " << eq.getNode() << endl;
+ Message() << "d_trail["<<i<<"].d_proof = " << proof.getNode() << endl;
}
void DioSolver::subAndReduceCurrentFByIndex(DioSolver::SubIndex subIndex){
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback