mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
refactor polysat core / solver interface
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
e2165a78ed
commit
cecaf25c6f
6 changed files with 76 additions and 59 deletions
|
@ -43,8 +43,8 @@ namespace polysat {
|
|||
|
||||
struct atom {
|
||||
bool_var m_bv;
|
||||
unsigned m_index;
|
||||
atom(bool_var b, unsigned index) :m_bv(b), m_index(index) {}
|
||||
constraint_id m_index;
|
||||
atom(bool_var b, constraint_id index) :m_bv(b), m_index(index) {}
|
||||
~atom() { }
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue