mirror of
https://github.com/Z3Prover/z3
synced 2026-02-14 04:41:48 +00:00
Remove dlimit variable in recfun_solver.cpp - use direct call
Co-authored-by: nunoplopes <2998477+nunoplopes@users.noreply.github.com>
This commit is contained in:
parent
055bce306a
commit
f2d6bba6c3
1 changed files with 1 additions and 2 deletions
|
|
@ -139,9 +139,8 @@ namespace recfun {
|
|||
*/
|
||||
void solver::disable_guard(expr* guard, expr_ref_vector const& guards) {
|
||||
SASSERT(!is_enabled_guard(guard));
|
||||
app_ref dlimit = m_util.mk_num_rounds_pred(m_num_rounds);
|
||||
expr_ref_vector core(m);
|
||||
core.push_back(std::move(dlimit));
|
||||
core.push_back(m_util.mk_num_rounds_pred(m_num_rounds));
|
||||
core.push_back(guard);
|
||||
if (!m_guard2pending.contains(guard)) {
|
||||
m_disabled_guards.push_back(guard);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue