mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
mask regression on fpa by not auto-setting relevancy=0
This commit is contained in:
parent
da6a5facca
commit
07b1ee5dcc
|
@ -834,7 +834,7 @@ namespace smt {
|
|||
// there are some other cases where relevancy propagation is harmful.
|
||||
//
|
||||
void setup::setup_relevancy(static_features& st) {
|
||||
if (st.m_has_bv && st.m_num_quantifiers == 0)
|
||||
if (st.m_has_bv && !st.m_has_fpa && st.m_num_quantifiers == 0)
|
||||
m_params.m_relevancy_lvl = 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue