mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 19:02:02 +00:00
fix build warnings part 7, disable LRA for regression t201.smt2
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
9b3e2a9afe
commit
7e004fe331
4 changed files with 25 additions and 27 deletions
|
@ -80,14 +80,11 @@ public:
|
|||
}
|
||||
|
||||
|
||||
lar_solver() : m_mpq_lar_core_solver(
|
||||
m_settings,
|
||||
*this
|
||||
),
|
||||
m_status(OPTIMAL),
|
||||
lar_solver() : m_status(OPTIMAL),
|
||||
m_infeasible_column_index(-1),
|
||||
m_terms_start_index(1000000),
|
||||
m_column_type_function ([this] (unsigned j) {return m_mpq_lar_core_solver.m_column_types()[j];})
|
||||
m_column_type_function ([this] (unsigned j) {return m_mpq_lar_core_solver.m_column_types()[j];}),
|
||||
m_mpq_lar_core_solver(m_settings, *this)
|
||||
{}
|
||||
|
||||
void set_propagate_bounds_on_pivoted_rows_mode(bool v) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue