summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/theory/arith/arith_prop_manager.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/theory/arith/arith_prop_manager.cpp b/src/theory/arith/arith_prop_manager.cpp
index 151421b31..77d32ef0b 100644
--- a/src/theory/arith/arith_prop_manager.cpp
+++ b/src/theory/arith/arith_prop_manager.cpp
@@ -24,23 +24,6 @@ bool ArithPropManager::isAsserted(TNode n) const{
}
}
-// Node ArithPropManager::strictlyWeakerAssertedUpperBound(TNode n) const{
-// Node weaker = n;
-// do {
-// weaker = d_propagator.getWeakerImpliedUpperBound(weaker);
-// }while(!weaker.isNull() && !isAsserted(weaker));
-// Assert(weaker != n);
-// return weaker;
-// }
-
-// Node ArithPropManager::strictlyWeakerAssertedLowerBound(TNode n) const{
-// Node weaker = n;
-// do {
-// weaker = d_propagator.getWeakerImpliedLowerBound(weaker);
-// }while(!weaker.isNull() && !isAsserted(weaker));
-// Assert(weaker != n);
-// return weaker;
-// }
Node ArithPropManager::strictlyWeakerAssertedUpperBound(ArithVar v, const DeltaRational& b) const{
Node bound = boundAsNode(true, v, b);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback