mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
fixing unit tests
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
1cd1a42618
commit
aeb3857391
8 changed files with 18 additions and 16 deletions
|
@ -29,6 +29,7 @@ void smt_params::updt_local_params(params_ref const & _p) {
|
|||
m_case_split_strategy = static_cast<case_split_strategy>(p.case_split());
|
||||
m_delay_units = p.delay_units();
|
||||
m_delay_units_threshold = p.delay_units_threshold();
|
||||
m_proof_mode = _p.get_bool("produce_proofs", false)? PGM_FINE : PGM_DISABLED;
|
||||
}
|
||||
|
||||
void smt_params::updt_params(params_ref const & p) {
|
||||
|
|
|
@ -283,6 +283,7 @@ namespace smt {
|
|||
if (!m_fparams) {
|
||||
m_fparams = alloc(smt_params, m_context->get_fparams());
|
||||
m_fparams->m_relevancy_lvl = 0; // no relevancy since the model checking problems are quantifier free
|
||||
m_fparams->m_proof_mode = m_manager.proof_mode();
|
||||
}
|
||||
if (!m_aux_context) {
|
||||
symbol logic;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue