mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 12:08:18 +00:00
switch to new configuration convention in solver object
This commit is contained in:
parent
6188c536ef
commit
11b712fee0
|
@ -34,11 +34,11 @@ namespace euf {
|
||||||
if (!get_config().m_lemmas2console &&
|
if (!get_config().m_lemmas2console &&
|
||||||
!s().get_config().m_smt_proof_check &&
|
!s().get_config().m_smt_proof_check &&
|
||||||
!m_on_clause &&
|
!m_on_clause &&
|
||||||
!s().get_config().m_smt_proof.is_non_empty_string())
|
!m_config.m_proof_log.is_non_empty_string())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (s().get_config().m_smt_proof.is_non_empty_string())
|
if (m_config.m_proof_log.is_non_empty_string())
|
||||||
m_proof_out = alloc(std::ofstream, s().get_config().m_smt_proof.str(), std::ios_base::out);
|
m_proof_out = alloc(std::ofstream, m_config.m_proof_log.str(), std::ios_base::out);
|
||||||
get_drat().set_clause_eh(*this);
|
get_drat().set_clause_eh(*this);
|
||||||
m_proof_initialized = true;
|
m_proof_initialized = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue