3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-04 18:30:24 +00:00

remove unused file & hide a few symbols

This commit is contained in:
Nuno Lopes 2020-01-31 17:13:28 +00:00
parent 35aa98436f
commit d79692b185
14 changed files with 58 additions and 297 deletions

View file

@ -22,6 +22,8 @@ Revision History:
#include "ast/arith_decl_plugin.h"
#include "tactic/goal_util.h"
namespace {
class arith_degree_probe : public probe {
struct proc {
ast_manager & m;
@ -163,6 +165,8 @@ struct has_nlmul {
}
};
}
probe * mk_arith_avg_degree_probe() {
return alloc(arith_degree_probe, true);
}
@ -179,6 +183,7 @@ probe * mk_arith_max_bw_probe() {
return alloc(arith_bw_probe, false);
}
namespace {
struct is_non_qflira_functor {
struct found {};
ast_manager & m;
@ -392,6 +397,8 @@ public:
}
};
}
probe * mk_is_qflia_probe() {
return alloc(is_qflia_probe);
}
@ -417,6 +424,8 @@ probe * mk_is_mip_probe() {
}
namespace {
struct is_non_nira_functor {
struct found {};
ast_manager & m;
@ -697,6 +706,8 @@ public:
}
};
}
probe * mk_is_qfnia_probe() {
return alloc(is_qfnia_probe);
}