summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2011-03-05 19:30:06 +0000
committerTim King <taking@cs.nyu.edu>2011-03-05 19:30:06 +0000
commit3310588529b41924aadf706106599b99a3707a85 (patch)
treeb17d8470280db7d9e1da95594ac1bb11f3222a79 /src
parent56edc6f7b4f9982ea5cbeec850e346ff7e4a8f00 (diff)
Enables the PreferenceFunction minBoundAndRowCount.
Diffstat (limited to 'src')
-rw-r--r--src/theory/arith/simplex.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/arith/simplex.cpp b/src/theory/arith/simplex.cpp
index 956a83563..7e83e1b9e 100644
--- a/src/theory/arith/simplex.cpp
+++ b/src/theory/arith/simplex.cpp
@@ -453,7 +453,7 @@ Node SimplexDecisionProcedure::updateInconsistentVars(){
possibleConflict = findConflictOnTheQueue(BeforeDiffSearch);
}
if(possibleConflict.isNull()){
- possibleConflict = searchForFeasibleSolution<minRowCount>(d_numVariables + 1);
+ possibleConflict = searchForFeasibleSolution<minBoundAndRowCount>(d_numVariables + 1);
}
if(d_queue.size() > 1 && possibleConflict.isNull()){
possibleConflict = findConflictOnTheQueue(AfterDiffSearch);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback