mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
drat
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
9cd339841a
commit
470bf27d1d
8 changed files with 128 additions and 73 deletions
|
@ -77,11 +77,12 @@ class smt_checker {
|
|||
auto const& units = m_drat.units();
|
||||
#if 0
|
||||
for (unsigned i = m_units.size(); i < units.size(); ++i) {
|
||||
sat::literal lit = units[i];
|
||||
sat::literal lit = units[i].first;
|
||||
m_lemma_solver->assert_expr(lit2expr(lit));
|
||||
}
|
||||
#endif
|
||||
m_units.append(units.size() - m_units.size(), units.data() + m_units.size());
|
||||
for (unsigned i = m_units.size(); i < units.size(); ++i)
|
||||
m_units.push_back(units[i].first);
|
||||
}
|
||||
|
||||
void check_assertion_redundant(sat::literal_vector const& input) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue