mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 19:35:50 +00:00
break on small cores
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f020b7c7b8
commit
8141dadc89
14 changed files with 80 additions and 31 deletions
|
@ -141,7 +141,7 @@ namespace simplex {
|
|||
void unset_upper(var_t var);
|
||||
void set_value(var_t var, eps_numeral const& b);
|
||||
void set_cancel(bool f) { m_cancel = f; }
|
||||
void set_max_iterations(unsigned m) { m_max_iterations = m; }
|
||||
void set_max_iterations(unsigned n) { m_max_iterations = n; }
|
||||
void reset();
|
||||
lbool make_feasible();
|
||||
lbool minimize(var_t var);
|
||||
|
|
|
@ -100,7 +100,7 @@ namespace simplex {
|
|||
_row_entry & add_row_entry(unsigned & pos_idx);
|
||||
void del_row_entry(unsigned idx);
|
||||
void compress(manager& m, vector<column> & cols);
|
||||
void compress_if_needed(manager& m, vector<column> & cols);
|
||||
void compress_if_needed(manager& _m, vector<column> & cols);
|
||||
void save_var_pos(svector<int> & result_map, unsigned_vector& idxs) const;
|
||||
//bool is_coeff_of(var_t v, numeral const & expected) const;
|
||||
int get_idx_of(var_t v) const;
|
||||
|
@ -143,7 +143,7 @@ namespace simplex {
|
|||
|
||||
public:
|
||||
|
||||
sparse_matrix(manager& m): m(m) {}
|
||||
sparse_matrix(manager& _m): m(_m) {}
|
||||
~sparse_matrix();
|
||||
void reset();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue