3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-26 04:56:03 +00:00

simplify code + remove unused file

This commit is contained in:
Nuno Lopes 2022-12-11 22:09:41 +00:00
parent 6b60a3dbed
commit d308b8f555
5 changed files with 1 additions and 61 deletions

View file

@ -159,9 +159,7 @@ void goal::quick_process(bool save_first, expr_ref& f, expr_dependency * d) {
while (!todo.empty()) {
if (m_inconsistent)
return;
expr_pol p = todo.back();
expr * curr = p.first;
bool pol = p.second;
auto [curr, pol] = todo.back();
todo.pop_back();
if (pol && m().is_and(curr)) {
app * t = to_app(curr);