3
0
Fork 0
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:
Nikolaj Bjorner 2023-12-15 10:40:02 -08:00
parent e2165a78ed
commit cecaf25c6f
6 changed files with 76 additions and 59 deletions

View file

@ -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() { }
};