ConvertTight: Detect and fix infeasibility

This commit is contained in:
2021-01-12 10:05:57 -06:00
parent e59386f941
commit f77d1d5de9
6 changed files with 112 additions and 5 deletions

View File

@@ -258,5 +258,14 @@ class BasePyomoSolver(InternalSolver):
def set_constraint_sense(self, cid, sense):
raise Exception("Not implemented")
def get_constraint_sense(self, cid):
raise Exception("Not implemented")
def set_constraint_rhs(self, cid, rhs):
raise Exception("Not implemented")
def is_infeasible(self):
raise Exception("Not implemented")
def get_farkas_dual(self, cid):
raise Exception("Not implemented")