mirror of
https://github.com/Z3Prover/z3
synced 2025-08-23 03:27:52 +00:00
add cce minimization
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
ede12553f2
commit
2d0f80f78e
3 changed files with 86 additions and 12 deletions
|
@ -202,12 +202,8 @@ namespace sat {
|
|||
}
|
||||
|
||||
bool integrity_checker::check_reinit_stack() const {
|
||||
clause_wrapper_vector::const_iterator it = s.m_clauses_to_reinit.begin();
|
||||
clause_wrapper_vector::const_iterator end = s.m_clauses_to_reinit.end();
|
||||
for (; it != end; ++it) {
|
||||
if (it->is_binary())
|
||||
continue;
|
||||
SASSERT(it->get_clause()->on_reinit_stack());
|
||||
for (auto const& c : s.m_clauses_to_reinit) {
|
||||
SASSERT(c.is_binary() || c.get_clause()->on_reinit_stack());
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue