mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
avoid repeated internalization of lambda #4169
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
7ae20476c2
commit
799b6131f2
8 changed files with 88 additions and 31 deletions
|
@ -110,6 +110,7 @@ struct smt_params : public preprocessor_params,
|
|||
bool m_display_features;
|
||||
bool m_new_core2th_eq;
|
||||
bool m_ematching;
|
||||
bool m_induction;
|
||||
bool m_clause_proof;
|
||||
|
||||
// -----------------------------------
|
||||
|
@ -262,6 +263,7 @@ struct smt_params : public preprocessor_params,
|
|||
m_display_features(false),
|
||||
m_new_core2th_eq(true),
|
||||
m_ematching(true),
|
||||
m_induction(false),
|
||||
m_clause_proof(false),
|
||||
m_case_split_strategy(CS_ACTIVITY_DELAY_NEW),
|
||||
m_rel_case_split_order(0),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue