3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-13 14:40:55 +00:00

remove dead code

This commit is contained in:
Nikolaj Bjorner 2023-08-07 11:22:34 -07:00
parent dd0b0b47b8
commit 125787c458
4 changed files with 1 additions and 175 deletions

View file

@ -52,15 +52,13 @@ class int_solver {
patcher(int_solver& lia);
bool should_apply() const { return true; }
lia_move operator()() { return patch_basic_columns(); }
void patch_nbasic_column(unsigned j);
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:
void remove_fixed_vars_from_base();
lia_move patch_nbasic_columns();
lia_move patch_basic_columns();
void remove_fixed_vars_from_base();
};
lar_solver& lra;
@ -134,7 +132,6 @@ public:
bool all_columns_are_bounded() const;
void find_feasible_solution();
lia_move hnf_cut();
void patch_nbasic_column(unsigned j) { m_patcher.patch_nbasic_column(j); }
int select_int_infeasible_var();