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:
parent
71b6f97fb1
commit
c33dce1161
9 changed files with 104 additions and 7 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue