Skip to content

Commit

Permalink
mask regression on fpa by not auto-setting relevancy=0
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Dec 21, 2024
1 parent da6a5fa commit 07b1ee5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/smt/smt_setup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 07b1ee5

Please sign in to comment.