Skip to content

Commit

Permalink
fix #7448
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Nov 10, 2024
1 parent 4f060dd commit 1856ab7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/model/datatype_factory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ expr * datatype_factory::get_fresh_value(sort * s) {
expr * maybe_new_arg = nullptr;
if (!m_util.is_datatype(s_arg))
maybe_new_arg = m_model.get_fresh_value(s_arg);
else if (num_iterations <= 1 || m_util.is_recursive(s_arg))
else if (num_iterations <= 10 && (num_iterations <= 1 || m_util.is_recursive(s_arg)))
maybe_new_arg = get_almost_fresh_value(s_arg);
else
maybe_new_arg = get_fresh_value(s_arg);
Expand Down

0 comments on commit 1856ab7

Please sign in to comment.