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

add core validation option to directly validate cores using the context

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2015-08-10 10:56:07 +02:00
parent 76ca64b93b
commit db24cb8087
6 changed files with 36 additions and 1 deletions

View file

@ -195,6 +195,7 @@ struct smt_params : public preprocessor_params,
//
// -----------------------------------
bool m_display_installed_theories;
bool m_core_validate;
// -----------------------------------
//
@ -269,6 +270,7 @@ struct smt_params : public preprocessor_params,
m_model_on_final_check(false),
m_progress_sampling_freq(0),
m_display_installed_theories(false),
m_core_validate(false),
m_preprocess(true), // temporary hack for disabling all preprocessing..
m_user_theory_preprocess_axioms(false),
m_user_theory_persist_axioms(false),