summaryrefslogtreecommitdiff
path: root/src/theory/arith/attempt_solution_simplex.cpp
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2020-12-02 14:24:52 -0800
committerGitHub <noreply@github.com>2020-12-02 14:24:52 -0800
commita9eaeb438882abd6d06be41c6fcb87f4f04bcc8c (patch)
treeaf6188637ea86feb9f6bc6595740a2d5129893fb /src/theory/arith/attempt_solution_simplex.cpp
parent768157d3bf78337a603004a2a47026ecf1b70612 (diff)
Rename macro Message to CVC4Message. (#5576)
Diffstat (limited to 'src/theory/arith/attempt_solution_simplex.cpp')
-rw-r--r--src/theory/arith/attempt_solution_simplex.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/arith/attempt_solution_simplex.cpp b/src/theory/arith/attempt_solution_simplex.cpp
index b8e08add8..22802b558 100644
--- a/src/theory/arith/attempt_solution_simplex.cpp
+++ b/src/theory/arith/attempt_solution_simplex.cpp
@@ -122,12 +122,12 @@ Result::Sat AttemptSolutionSDP::attempt(const ApproximateSimplex::Solution& sol)
Assert(toAdd != ARITHVAR_SENTINEL);
Trace("arith::forceNewBasis") << toRemove << " " << toAdd << endl;
- //Message() << toRemove << " " << toAdd << endl;
+ // CVC4Message() << toRemove << " " << toAdd << endl;
d_linEq.pivotAndUpdate(toRemove, toAdd, newValues[toRemove]);
Trace("arith::forceNewBasis") << needsToBeAdded.size() << "to go" << endl;
- //Message() << needsToBeAdded.size() << "to go" << endl;
+ // CVC4Message() << needsToBeAdded.size() << "to go" << endl;
needsToBeAdded.remove(toAdd);
bool conflict = processSignals();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback