3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-14 04:48:45 +00:00
This commit is contained in:
Nikolaj Bjorner 2023-02-13 13:20:55 -08:00
parent 2b77012993
commit 3dc91de531
2 changed files with 8 additions and 1 deletions

View file

@ -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);

View file

@ -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: