3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-19 10:52:02 +00:00

move initialization to header file

This commit is contained in:
Nikolaj Bjorner 2023-10-09 10:55:43 +09:00
parent 75e29b2a6d
commit 1bdf66b918
2 changed files with 2 additions and 4 deletions

View file

@ -78,8 +78,8 @@ class lar_solver : public column_namer {
lp_status m_status = lp_status::UNKNOWN;
stacked_value<simplex_strategy_enum> m_simplex_strategy;
// such can be found at the initialization step: u < l
lpvar m_crossed_bounds_column;
u_dependency* m_crossed_bounds_deps;
lpvar m_crossed_bounds_column = null_lpvar;
u_dependency* m_crossed_bounds_deps = nullptr;
lar_core_solver m_mpq_lar_core_solver;
int_solver* m_int_solver = nullptr;
bool m_need_register_terms = false;