3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-31 11:21:31 +00:00

build fix

This commit is contained in:
Christoph M. Wintersteiger 2016-11-01 11:23:42 +00:00
parent 84172302a2
commit ed5137ffd2

View file

@ -200,7 +200,7 @@ static void test_sorting_eq(unsigned n, unsigned k) {
// equality:
std::cout << "eq " << k << "\n";
solver.push();
result = sn.eq(k, in.size(), in.c_ptr());
result = sn.eq(true, k, in.size(), in.c_ptr());
solver.assert_expr(result);
for (unsigned i = 0; i < ext.m_clauses.size(); ++i) {
solver.assert_expr(ext.m_clauses[i].get());