mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 01:24:08 +00:00
fix mac build error
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
6304578111
commit
ff2924e83b
|
@ -5,6 +5,13 @@ mkdir build
|
||||||
CSC=/usr/bin/csc GACUTIL=/usr/bin/gacutil CXX=clang++ CC=clang python scripts/mk_make.py --java --python
|
CSC=/usr/bin/csc GACUTIL=/usr/bin/gacutil CXX=clang++ CC=clang python scripts/mk_make.py --java --python
|
||||||
cd build
|
cd build
|
||||||
make
|
make
|
||||||
|
make test-z3
|
||||||
|
make cpp_example
|
||||||
|
make c_example
|
||||||
|
make java_example
|
||||||
|
make python_example
|
||||||
|
./cpp_example
|
||||||
|
./c_example
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -2185,6 +2185,7 @@ namespace smt {
|
||||||
unsigned idx = lits.size()-1;
|
unsigned idx = lits.size()-1;
|
||||||
b_justification js;
|
b_justification js;
|
||||||
literal conseq = ~confl[2];
|
literal conseq = ~confl[2];
|
||||||
|
int bound = 1;
|
||||||
|
|
||||||
while (m_num_marks > 0) {
|
while (m_num_marks > 0) {
|
||||||
|
|
||||||
|
@ -2221,8 +2222,8 @@ namespace smt {
|
||||||
//
|
//
|
||||||
// Resolve selected conseq with antecedents.
|
// Resolve selected conseq with antecedents.
|
||||||
//
|
//
|
||||||
|
|
||||||
int bound = 1;
|
bound = 1;
|
||||||
|
|
||||||
switch(js.get_kind()) {
|
switch(js.get_kind()) {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue