mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 19:27:06 +00:00
continue updates for adding proof-log to smt core
This commit is contained in:
parent
c7781f346d
commit
5374142e3e
src/smt/params
|
@ -64,6 +64,7 @@ void smt_params::updt_local_params(params_ref const & _p) {
|
|||
m_axioms2files = sp.axioms2files();
|
||||
m_lemmas2console = sp.lemmas2console();
|
||||
m_instantiations2console = sp.instantiations2console();
|
||||
m_proof_log = sp.proof_log();
|
||||
}
|
||||
|
||||
void smt_params::updt_params(params_ref const & p) {
|
||||
|
@ -126,6 +127,7 @@ void smt_params::display(std::ostream & out) const {
|
|||
DISPLAY_PARAM(m_ematching);
|
||||
DISPLAY_PARAM(m_induction);
|
||||
DISPLAY_PARAM(m_clause_proof);
|
||||
DISPLAY_PARAM(m_proof_log);
|
||||
|
||||
DISPLAY_PARAM(m_case_split_strategy);
|
||||
DISPLAY_PARAM(m_rel_case_split_order);
|
||||
|
|
|
@ -112,6 +112,7 @@ struct smt_params : public preprocessor_params,
|
|||
bool m_ematching = true;
|
||||
bool m_induction = false;
|
||||
bool m_clause_proof = false;
|
||||
symbol m_proof_log;
|
||||
|
||||
// -----------------------------------
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue