mirror of
https://github.com/Z3Prover/z3
synced 2025-04-16 05:48:44 +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:
parent
e1d3119f9f
commit
0164ea9abb
|
@ -730,10 +730,10 @@ namespace smt {
|
||||||
m_asserted_qhead(0),
|
m_asserted_qhead(0),
|
||||||
m_assume_eq_head(0),
|
m_assume_eq_head(0),
|
||||||
m_num_conflicts(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_model_eqs(DEFAULT_HASHTABLE_INITIAL_CAPACITY, var_value_hash(*this), var_value_eq(*this)),
|
||||||
m_solver(0),
|
m_solver(0),
|
||||||
m_resource_limit(*this),
|
m_resource_limit(*this) {
|
||||||
m_use_nra_model(false) {
|
|
||||||
}
|
}
|
||||||
|
|
||||||
~imp() {
|
~imp() {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#include "util/lp/lar_solver.h"
|
#include "util/lp/lar_solver.h"
|
||||||
/*
|
/*
|
||||||
Copyright (c) 2017 Microsoft Corporation
|
Copyright (c) 2017 Microsoft Corporation
|
||||||
Author: Lev Nachmanson
|
Author: Nikolaj Bjorner, Lev Nachmanson
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace lp {
|
namespace lp {
|
||||||
|
|
|
@ -10,7 +10,7 @@ Abstract:
|
||||||
<abstract>
|
<abstract>
|
||||||
|
|
||||||
Author:
|
Author:
|
||||||
|
Nikolaj Bjorner (nbjorner)
|
||||||
Lev Nachmanson (levnach)
|
Lev Nachmanson (levnach)
|
||||||
|
|
||||||
Revision History:
|
Revision History:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Copyright (c) 2017 Microsoft Corporation
|
Copyright (c) 2017 Microsoft Corporation
|
||||||
Author: Lev Nachmanson
|
Author: Nikolaj Bjorner
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "util/lp/lar_solver.h"
|
#include "util/lp/lar_solver.h"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Copyright (c) 2017 Microsoft Corporation
|
Copyright (c) 2017 Microsoft Corporation
|
||||||
Author: Lev Nachmanson
|
Author: Nikolaj Bjorner
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
Loading…
Reference in a new issue