3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 04:28:17 +00:00

align use of spaces before for/if/while

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-06-17 09:43:40 -07:00
parent 190428ab3f
commit 035baf7cb9
4 changed files with 28 additions and 27 deletions

View file

@ -504,7 +504,8 @@ namespace {
m_todo.pop_back();
process_app(a, out);
m_visited.mark(a, true);
} while(!m_todo.empty());
}
while (!m_todo.empty());
}
bool pick_implicant(const expr_ref_vector &in, expr_ref_vector &out) {