3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00

change the order of initializations in the constructor of imp in theory_lra

Signed-off-by: Lev Nachmanson <levnach@microsoft.com>
This commit is contained in:
Lev Nachmanson 2017-07-10 12:04:58 -07:00 committed by Lev Nachmanson
parent e1d3119f9f
commit 0164ea9abb
5 changed files with 6 additions and 6 deletions

View file

@ -730,10 +730,10 @@ namespace smt {
m_asserted_qhead(0),
m_assume_eq_head(0),
m_num_conflicts(0),
m_use_nra_model(false),
m_model_eqs(DEFAULT_HASHTABLE_INITIAL_CAPACITY, var_value_hash(*this), var_value_eq(*this)),
m_solver(0),
m_resource_limit(*this),
m_use_nra_model(false) {
m_resource_limit(*this) {
}
~imp() {