3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-03 21:01:22 +00:00

Remove unused function

This commit is contained in:
Arie Gurfinkel 2018-06-13 13:34:31 -07:00
parent 535b8893ae
commit 81575fae7c

View file

@ -160,11 +160,6 @@ namespace qe {
return true;
}
static bool is_eq(vector<rational> const& xs, vector<rational> const& ys) {
for (unsigned i = 0; i < xs.size(); ++i) if (xs[i] != ys[i]) return false;
return true;
}
static expr_ref mk_eq(expr_ref_vector const& xs, expr_ref_vector const& ys) {
ast_manager& m = xs.get_manager();
expr_ref_vector eqs(m);
@ -1424,4 +1419,3 @@ namespace qe {
}
};