fix(library/unifier): bug in the new next_delta_unfold_case_split
This commit is contained in:
parent
09162e5fea
commit
cd87539de5
1 changed files with 8 additions and 4 deletions
|
@ -1204,12 +1204,16 @@ struct unifier_fn {
|
|||
if (dcs.first) {
|
||||
constraints cnstrs = dcs.second.to_list();
|
||||
return process_constraints(cnstrs, mk_composite1(cs.get_jst(), mk_assumption_justification(cs.m_assumption_idx)));
|
||||
} else {
|
||||
set_conflict(j);
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
// update conflict
|
||||
update_conflict(mk_composite1(*m_conflict, cs.m_failed_justifications));
|
||||
pop_case_split();
|
||||
return false;
|
||||
}
|
||||
// update conflict
|
||||
update_conflict(mk_composite1(*m_conflict, cs.m_failed_justifications));
|
||||
pop_case_split();
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue