3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-24 21:26:59 +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 committed by Lev Nachmanson
parent 0e71a9d11c
commit 126e06b8b6

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);