mirror of
https://github.com/ANL-CEEESA/MIPLearn.git
synced 2025-12-06 09:28:51 -06:00
Merge branch 'feature/convert-ineqs' into dev
This commit is contained in:
@@ -256,11 +256,23 @@ class BasePyomoSolver(InternalSolver):
|
||||
def relax(self):
|
||||
raise Exception("not implemented")
|
||||
|
||||
def get_constraint_slacks(self):
|
||||
def get_inequality_slacks(self):
|
||||
raise Exception("not implemented")
|
||||
|
||||
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_dual(self, cid):
|
||||
raise Exception("Not implemented")
|
||||
|
||||
def get_sense(self):
|
||||
raise Exception("Not implemented")
|
||||
|
||||
Reference in New Issue
Block a user