3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-03-01 11:16:54 +00:00

revert swap changes to fix CI

This commit is contained in:
Nuno Lopes 2026-02-10 19:30:49 +00:00
parent b8a036816e
commit de26d8f6f7
4 changed files with 7 additions and 7 deletions

View file

@ -387,7 +387,7 @@ namespace qe {
for (unsigned i = vars.size(); i-- > 0;) {
ex.project(vars[i], result.size(), result.data(), new_result);
TRACE(qe, display_project(tout, vars[i], result, new_result););
result = std::move(new_result);
result.swap(new_result);
}
negate_clause(result);
}