3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-12-25 21:46:51 +00:00

fix the test-z3 build

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2025-06-16 18:29:08 -07:00
parent 3439945a7b
commit d3e05b271c

View file

@ -319,7 +319,7 @@ static void project(nlsat::solver& s, nlsat::explain& ex, nlsat::var x, unsigned
static void project_fa(nlsat::solver& s, nlsat::explain& ex, nlsat::var x, unsigned num, nlsat::literal const* lits) {
std::cout << "Project ";
nlsat::scoped_literal_vector result(s);
ex(num, lits, result);
ex.main_operator(num, lits, result);
std::cout << "(or";
for (auto l : result) {
s.display(std::cout << " ", l);