3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-14 06:45:25 +00:00

delete remove_fixed_vars_from_base() from

int_solver
This commit is contained in:
Lev Nachmanson 2023-08-05 09:31:55 -10:00 committed by Lev Nachmanson
parent c3a373e225
commit 0fbf8f92f5
3 changed files with 4 additions and 31 deletions

View file

@ -52,13 +52,12 @@ class int_solver {
patcher(int_solver& lia);
bool should_apply() const { return true; }
lia_move operator()() { return patch_basic_columns(); }
bool patch_basic_column_on_row_cell(unsigned v, row_cell<mpq> const& c);
void patch_basic_column(unsigned j);
bool try_patch_column(unsigned v, unsigned j, mpq const& delta);
unsigned count_non_int();
private:
bool patch_basic_column_on_row_cell(unsigned v, row_cell<mpq> const& c);
lia_move patch_basic_columns();
void remove_fixed_vars_from_base();
};
lar_solver& lra;