mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 03:15:50 +00:00
check with cube and clause
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
af57db0413
commit
b73aa3642a
10 changed files with 202 additions and 108 deletions
|
@ -192,13 +192,13 @@ namespace smt {
|
|||
return m_lits[idx];
|
||||
}
|
||||
|
||||
literal * begin_literals() { return m_lits; }
|
||||
literal * begin() { return m_lits; }
|
||||
|
||||
literal * end_literals() { return m_lits + m_num_literals; }
|
||||
literal * end() { return m_lits + m_num_literals; }
|
||||
|
||||
literal const * begin_literals() const { return m_lits; }
|
||||
literal const * begin() const { return m_lits; }
|
||||
|
||||
literal const * end_literals() const { return m_lits + m_num_literals; }
|
||||
literal const * end() const { return m_lits + m_num_literals; }
|
||||
|
||||
unsigned get_activity() const {
|
||||
SASSERT(is_lemma());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue