summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClark Barrett <barrett@cs.stanford.edu>2016-12-12 09:38:53 -0800
committerGitHub <noreply@github.com>2016-12-12 09:38:53 -0800
commitca0d57862bddc2f8b9715beb2abf4b577c4c7059 (patch)
tree33de917c1c3670f94aba2ee1acf53e4f3fd78988
parent89be804959b82c68b69906c84d843a8ecc33056a (diff)
parent6cc03ca6e596846d3a42d080e50c22f582d70e87 (diff)
Merge pull request #117 from 4tXJ7f/fix_order
Fix initialization order
-rw-r--r--src/theory/arith/simplex.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/arith/simplex.cpp b/src/theory/arith/simplex.cpp
index 66f878b1a..9dd13711c 100644
--- a/src/theory/arith/simplex.cpp
+++ b/src/theory/arith/simplex.cpp
@@ -30,8 +30,8 @@ namespace arith {
SimplexDecisionProcedure::SimplexDecisionProcedure(LinearEqualityModule& linEq, ErrorSet& errors, RaiseConflict conflictChannel, TempVarMalloc tvmalloc)
- : d_pivots(0),
- d_conflictVariables()
+ : d_pivots(0)
+ , d_conflictVariables()
, d_linEq(linEq)
, d_variables(d_linEq.getVariables())
, d_tableau(d_linEq.getTableau())
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback