mirror of
https://github.com/Z3Prover/z3
synced 2025-04-14 04:48:45 +00:00
fix #6582
This commit is contained in:
parent
2b77012993
commit
3dc91de531
|
@ -1745,6 +1745,13 @@ bool core::influences_nl_var(lpvar j) const {
|
|||
return false;
|
||||
}
|
||||
|
||||
void core::set_use_nra_model(bool m) {
|
||||
if (m != m_use_nra_model) {
|
||||
trail().push(value_trail(m_use_nra_model));
|
||||
m_use_nra_model = m;
|
||||
}
|
||||
}
|
||||
|
||||
void core::collect_statistics(::statistics & st) {
|
||||
st.update("arith-nla-explanations", m_stats.m_nla_explanations);
|
||||
st.update("arith-nla-lemmas", m_stats.m_nla_lemmas);
|
||||
|
|
|
@ -418,7 +418,7 @@ public:
|
|||
bool var_is_big(lpvar) const;
|
||||
bool has_real(const factorization&) const;
|
||||
bool has_real(const monic& m) const;
|
||||
void set_use_nra_model(bool m) { m_use_nra_model = m; }
|
||||
void set_use_nra_model(bool m);
|
||||
bool use_nra_model() const { return m_use_nra_model; }
|
||||
void collect_statistics(::statistics&);
|
||||
private:
|
||||
|
|
Loading…
Reference in a new issue