Skip to content

Commit

Permalink
continue updates for adding proof-log to smt core
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Nov 23, 2022
1 parent c7781f3 commit 5374142
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/smt/params/smt_params.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -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);
Expand Down
1 change: 1 addition & 0 deletions src/smt/params/smt_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

// -----------------------------------
//
Expand Down

0 comments on commit 5374142

Please sign in to comment.