3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05:51 +00:00

combine PS_THEORY with cache on/off mode

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-02-01 09:50:00 -08:00
parent 3ec7146ec8
commit 74fc8cfde7
5 changed files with 23 additions and 7 deletions

View file

@ -104,6 +104,7 @@ struct smt_params : public preprocessor_params,
unsigned m_max_conflicts;
unsigned m_restart_max;
unsigned m_threads;
unsigned m_threads_max_conflicts;
bool m_simplify_clauses;
unsigned m_tick;
bool m_display_features;
@ -255,6 +256,7 @@ struct smt_params : public preprocessor_params,
m_minimize_lemmas(true),
m_max_conflicts(UINT_MAX),
m_threads(1),
m_threads_max_conflicts(UINT_MAX),
m_simplify_clauses(true),
m_tick(1000),
m_display_features(false),