mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 02:45:51 +00:00
move functionality from qe_util to ast_util
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5f484c069b
commit
bf5419d44a
25 changed files with 174 additions and 161 deletions
|
@ -81,7 +81,7 @@ namespace qe {
|
|||
ptr_vector<expr> todo;
|
||||
ptr_vector<expr> conjs_closed, conjs_mixed, conjs_open;
|
||||
|
||||
qe::flatten_and(fml, conjs);
|
||||
flatten_and(fml, conjs);
|
||||
|
||||
for (unsigned i = 0; i < conjs.size(); ++i) {
|
||||
todo.push_back(conjs[i].get());
|
||||
|
@ -306,7 +306,7 @@ namespace qe {
|
|||
// conj_enum
|
||||
|
||||
conj_enum::conj_enum(ast_manager& m, expr* e): m(m), m_conjs(m) {
|
||||
qe::flatten_and(e, m_conjs);
|
||||
flatten_and(e, m_conjs);
|
||||
}
|
||||
|
||||
void conj_enum::extract_equalities(expr_ref_vector& eqs) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue