summaryrefslogtreecommitdiff
path: root/src/theory/arith/fc_simplex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/fc_simplex.cpp')
-rw-r--r--src/theory/arith/fc_simplex.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/arith/fc_simplex.cpp b/src/theory/arith/fc_simplex.cpp
index 49c17172f..f706babda 100644
--- a/src/theory/arith/fc_simplex.cpp
+++ b/src/theory/arith/fc_simplex.cpp
@@ -113,7 +113,7 @@ Result::Sat FCSimplexDecisionProcedure::findModel(bool exactResult){
Debug("arith::findModel") << "fcFindModel(" << instance <<") start non-trivial" << endl;
- exactResult |= options::arithStandardCheckVarOrderPivots() < 0;
+ exactResult |= d_varOrderPivotLimit < 0;
d_prevWitnessImprovement = HeuristicDegenerate;
d_witnessImprovementInARow = 0;
@@ -124,7 +124,7 @@ Result::Sat FCSimplexDecisionProcedure::findModel(bool exactResult){
if(exactResult){
d_pivotBudget = -1;
}else{
- d_pivotBudget = options::arithStandardCheckVarOrderPivots();
+ d_pivotBudget = d_varOrderPivotLimit;
}
result = dualLike();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback