mirror of
https://github.com/Z3Prover/z3
synced 2025-08-08 04:01:22 +00:00
fix #3972 regression from changing the way assumptions are initialized
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
25252af1fc
commit
1ec977930a
4 changed files with 33 additions and 48 deletions
|
@ -696,8 +696,7 @@ namespace smt {
|
|||
bool is_step(expr* e) const;
|
||||
bool is_max_unfolding(expr* e) const { return is_skolem(symbol("seq.max_unfolding_depth"), e); }
|
||||
expr_ref mk_max_unfolding_depth() {
|
||||
return mk_skolem(symbol("seq.max_unfolding_depth"),
|
||||
m_autil.mk_int(m_max_unfolding_depth),
|
||||
return mk_skolem(symbol("seq.max_unfolding_depth"), m_autil.mk_int(m_max_unfolding_depth),
|
||||
nullptr, nullptr, nullptr, m.mk_bool_sort());
|
||||
}
|
||||
void propagate_not_prefix(expr* e);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue