3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-02 05:15:52 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-02-11 13:49:47 -08:00
parent 2e648e2f02
commit 25f53c0467
11 changed files with 6 additions and 18 deletions

View file

@ -550,7 +550,6 @@ namespace qe {
void nnf_and_or(bool is_and, app* a, bool p) {
m_args.reset();
unsigned num_args = a->get_num_args();
expr_ref tmp(m);
bool visited = true;
for (expr* arg : *a) {
@ -1272,7 +1271,6 @@ namespace qe {
}
bool i_solver_context::has_plugin(app* x) {
ast_manager& m = get_manager();
family_id fid = x->get_sort()->get_family_id();
return
0 <= fid &&
@ -1281,7 +1279,6 @@ namespace qe {
}
qe_solver_plugin& i_solver_context::plugin(app* x) {
ast_manager& m = get_manager();
SASSERT(has_plugin(x));
return *(m_plugins[x->get_sort()->get_family_id()]);
}