mirror of
https://github.com/Z3Prover/z3
synced 2025-05-07 15:55: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
|
@ -495,11 +495,10 @@ class smt_printer {
|
|||
m_qlists.push_back(q);
|
||||
|
||||
m_out << "(";
|
||||
if (q->is_forall()) {
|
||||
m_out << "forall ";
|
||||
}
|
||||
else {
|
||||
m_out << "exists ";
|
||||
switch (q->get_kind()) {
|
||||
case forall_k: m_out << "forall "; break;
|
||||
case exists_k: m_out << "exists "; break;
|
||||
case lambda_k: m_out << "lambda "; break;
|
||||
}
|
||||
m_out << "(";
|
||||
for (unsigned i = 0; i < q->get_num_decls(); ++i) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue