Skip to content

Commit 126e06b

Browse files
committed
fix the test-z3 build
Signed-off-by: Lev Nachmanson <[email protected]>
1 parent 0e71a9d commit 126e06b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/nlsat.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ static void project(nlsat::solver& s, nlsat::explain& ex, nlsat::var x, unsigned
319319
static void project_fa(nlsat::solver& s, nlsat::explain& ex, nlsat::var x, unsigned num, nlsat::literal const* lits) {
320320
std::cout << "Project ";
321321
nlsat::scoped_literal_vector result(s);
322-
ex(num, lits, result);
322+
ex.main_operator(num, lits, result);
323323
std::cout << "(or";
324324
for (auto l : result) {
325325
s.display(std::cout << " ", l);

0 commit comments

Comments
 (0)