mirror of
https://github.com/Z3Prover/z3
synced 2025-08-15 23:35:26 +00:00
remove proof_converter from tactic application, removing nlsat_tactic
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
b3bd9b89b5
commit
df6b1a707e
93 changed files with 236 additions and 1216 deletions
|
@ -42,7 +42,6 @@ struct unit_subsumption_tactic : public tactic {
|
|||
virtual void operator()(/* in */ goal_ref const & in,
|
||||
/* out */ goal_ref_buffer & result,
|
||||
/* out */ model_converter_ref & mc,
|
||||
/* out */ proof_converter_ref & pc,
|
||||
/* out */ expr_dependency_ref & core) {
|
||||
reduce_core(in, result);
|
||||
}
|
||||
|
@ -109,9 +108,7 @@ struct unit_subsumption_tactic : public tactic {
|
|||
}
|
||||
|
||||
void insert_result(goal_ref& result) {
|
||||
for (unsigned i = 0; i < m_deleted.size(); ++i) {
|
||||
result->update(m_deleted[i], m.mk_true()); // TBD proof?
|
||||
}
|
||||
for (auto d : m_deleted) result->update(d, m.mk_true()); // TBD proof?
|
||||
}
|
||||
|
||||
void init(goal_ref const& g) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue