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:
parent
6b60a3dbed
commit
d308b8f555
5 changed files with 1 additions and 61 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue