mirror of
https://github.com/Z3Prover/z3
synced 2025-05-08 00:05:46 +00:00
integrate lambda expressions
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
bf4edef761
commit
520ce9a5ee
139 changed files with 2243 additions and 1506 deletions
|
@ -994,7 +994,7 @@ class smt2_printer {
|
|||
}
|
||||
format * f_decls = pp_var_decls(q);
|
||||
format * fs[2] = { f_decls, f_body };
|
||||
char const * header = q->is_forall() ? "forall" : "exists";
|
||||
char const * header = q->get_kind() == forall_k ? "forall" : (q->get_kind() == exists_k ? "exists" : "lambda");
|
||||
format * f = mk_seq3<format**, f2f>(m(), fs, fs+2, f2f(), header, 1, SMALL_INDENT);
|
||||
|
||||
info f_info = m_info_stack.back();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue