mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
logging pre-processing
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
ff3268e636
commit
c2e73a6aae
|
@ -110,12 +110,13 @@ class simplifier_solver : public solver {
|
|||
expr_ref_vector orig_assumptions(assumptions);
|
||||
m_core_replace.reset();
|
||||
if (qhead < m_fmls.size() || !assumptions.empty()) {
|
||||
TRACE("solver", tout << "qhead " << qhead << "\n");
|
||||
m_preprocess_state.replay(qhead, assumptions);
|
||||
m_preprocess_state.freeze(assumptions);
|
||||
m_preprocess.reduce();
|
||||
if (!m.inc())
|
||||
return;
|
||||
TRACE("solver", tout << "qhead " << qhead << "\n";
|
||||
m_preprocess_state.display(tout));
|
||||
m_preprocess_state.advance_qhead();
|
||||
for (unsigned i = 0; i < assumptions.size(); ++i)
|
||||
m_core_replace.insert(assumptions.get(i), orig_assumptions.get(i));
|
||||
|
|
Loading…
Reference in a new issue