mirror of
https://github.com/Z3Prover/z3
synced 2025-08-17 08:42:15 +00:00
add cce minimization
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
ede12553f2
commit
2d0f80f78e
3 changed files with 86 additions and 12 deletions
|
@ -155,8 +155,8 @@ namespace sat {
|
|||
};
|
||||
unsigned m_l2_idx;
|
||||
public:
|
||||
clause_wrapper(literal l1, literal l2):m_l1_idx(l1.to_uint()), m_l2_idx(l2.to_uint()) {}
|
||||
clause_wrapper(clause & c):m_cls(&c), m_l2_idx(null_literal.to_uint()) {}
|
||||
explicit clause_wrapper(literal l1, literal l2):m_l1_idx(l1.to_uint()), m_l2_idx(l2.to_uint()) {}
|
||||
explicit clause_wrapper(clause & c):m_cls(&c), m_l2_idx(null_literal.to_uint()) {}
|
||||
clause_wrapper& operator=(clause_wrapper const& other) {
|
||||
if (other.is_binary()) {
|
||||
m_l1_idx = other.m_l1_idx;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue