mirror of
https://github.com/Z3Prover/z3
synced 2025-08-25 04:26:00 +00:00
use member variable rather that static
This commit is contained in:
parent
64152c338d
commit
b968898b7e
2 changed files with 5 additions and 4 deletions
|
@ -104,8 +104,9 @@ namespace polysat {
|
|||
vector<justification> m_justification; // justification for variable assignment
|
||||
vector<signed_constraints> m_pwatch; // watch list datastructure into constraints.
|
||||
#ifndef NDEBUG
|
||||
std::optional<pvar> m_locked_wlist; // restrict watch list modification while it is begin propagated
|
||||
std::optional<pvar> m_locked_wlist; // restrict watch list modification while it is being propagated
|
||||
#endif
|
||||
bool m_propagating = false; // set to true during propagation
|
||||
|
||||
unsigned_vector m_activity;
|
||||
vector<pdd> m_vars;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue