mirror of
https://github.com/Z3Prover/z3
synced 2025-05-05 14:55:45 +00:00
remove an unused method
Signed-off-by: Lev <levnach@hotmail.com>
This commit is contained in:
parent
ee62f83131
commit
c979c694f6
1 changed files with 2 additions and 4 deletions
|
@ -2824,11 +2824,9 @@ public:
|
|||
|
||||
bool proofs_enabled() const { return m.proofs_enabled(); }
|
||||
|
||||
bool use_tableau() const { return lp_params(ctx().get_params()).simplex_strategy() < 2; }
|
||||
void set_upper_bound(lp::var_index vi, lp::constraint_index ci, rational const& v) { set_bound(vi, ci, v, false); }
|
||||
|
||||
bool set_upper_bound(lp::var_index vi, lp::constraint_index ci, rational const& v) { return set_bound(vi, ci, v, false); }
|
||||
|
||||
bool set_lower_bound(lp::var_index vi, lp::constraint_index ci, rational const& v) { return set_bound(vi, ci, v, true); }
|
||||
void set_lower_bound(lp::var_index vi, lp::constraint_index ci, rational const& v) { return set_bound(vi, ci, v, true); }
|
||||
|
||||
bool set_bound(lp::var_index vi, lp::constraint_index ci, rational const& v, bool is_lower) {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue