3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-17 16:52:15 +00:00

extract lemmas

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-06-04 14:12:55 -07:00
parent 71b6f97fb1
commit c33dce1161
9 changed files with 104 additions and 7 deletions

View file

@ -73,6 +73,8 @@ namespace sat {
bool check_approx() const; // for debugging
literal * begin() { return m_lits; }
literal * end() { return m_lits + m_size; }
literal const * begin() const { return m_lits; }
literal const * end() const { return m_lits + m_size; }
bool contains(literal l) const;
bool contains(bool_var v) const;
bool satisfied_by(model const & m) const;