3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-25 20:46:01 +00:00

fix pbge and reduce_tr

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-03-13 09:07:58 -07:00
parent e7d43ed516
commit 64954cc551
8 changed files with 83 additions and 23 deletions

View file

@ -25,6 +25,12 @@ namespace sat {
class solver;
class elim_eqs {
struct bin {
literal l1, l2;
bool learned;
bin(literal l1, literal l2, bool learned): l1(l1), l2(l2), learned(learned) {}
};
svector<bin> m_new_bin;
solver & m_solver;
void save_elim(literal_vector const & roots, bool_var_vector const & to_elim);
void cleanup_clauses(literal_vector const & roots, clause_vector & cs);