mirror of
https://github.com/Z3Prover/z3
synced 2025-08-07 19:51:22 +00:00
fix build errors
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a91d7a7189
commit
bfac44f7ed
3 changed files with 7 additions and 9 deletions
|
@ -243,11 +243,13 @@ namespace sat {
|
|||
|
||||
struct ba_sort {
|
||||
ba_solver& s;
|
||||
typedef typename sat::literal literal;
|
||||
typedef typename sat::literal_vector literal_vector;
|
||||
|
||||
literal m_true;
|
||||
literal_vector m_lits;
|
||||
|
||||
|
||||
typedef sat::literal literal;
|
||||
typedef sat::literal_vector literal_vector;
|
||||
ba_sort(ba_solver& s): s(s), m_true(null_literal) {}
|
||||
literal mk_false();
|
||||
literal mk_true();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue