3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-26 04:56:03 +00:00

Expand equality literals when eq_prop is disabled

When equality propagation is disabled for arithmetic,
equality atoms are expanded into inequality for potentially
better generalization with interpolation
This commit is contained in:
Arie Gurfinkel 2018-08-01 11:11:18 +02:00
parent e8a78ec696
commit 533e9c5837
2 changed files with 13 additions and 4 deletions

View file

@ -1027,11 +1027,12 @@ public:
const fp_params &get_params() const { return m_params; }
bool use_native_mbp () {return m_use_native_mbp;}
bool use_ground_pob () {return m_ground_pob;}
bool use_instantiate () {return m_instantiate;}
bool use_eq_prop() {return m_use_eq_prop;}
bool use_native_mbp() {return m_use_native_mbp;}
bool use_ground_pob() {return m_ground_pob;}
bool use_instantiate() {return m_instantiate;}
bool weak_abs() {return m_weak_abs;}
bool use_qlemmas () {return m_use_qlemmas;}
bool use_qlemmas() {return m_use_qlemmas;}
bool use_euf_gen() {return m_use_euf_gen;}
bool simplify_pob() {return m_simplify_pob;}
bool use_ctp() {return m_use_ctp;}