mirror of
https://github.com/Z3Prover/z3
synced 2025-07-21 11:52:05 +00:00
parent
9109a29a15
commit
5c2a381eb0
1 changed files with 3 additions and 2 deletions
|
@ -41,6 +41,7 @@ struct unit_subsumption_tactic : public tactic {
|
||||||
|
|
||||||
void operator()(/* in */ goal_ref const & in,
|
void operator()(/* in */ goal_ref const & in,
|
||||||
/* out */ goal_ref_buffer & result) override {
|
/* out */ goal_ref_buffer & result) override {
|
||||||
|
fail_if_proof_generation("unit-subsumption", in);
|
||||||
reduce_core(in, result);
|
reduce_core(in, result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -106,7 +107,7 @@ struct unit_subsumption_tactic : public tactic {
|
||||||
}
|
}
|
||||||
|
|
||||||
void insert_result(goal_ref& result) {
|
void insert_result(goal_ref& result) {
|
||||||
for (auto d : m_deleted) result->update(d, m.mk_true()); // TBD proof?
|
for (auto d : m_deleted) result->update(d, m.mk_true());
|
||||||
}
|
}
|
||||||
|
|
||||||
void init(goal_ref const& g) {
|
void init(goal_ref const& g) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue