3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-14 06:45:25 +00:00

add a few more statics to avoid symbol clashes

This commit is contained in:
Nuno Lopes 2016-12-01 17:37:07 +00:00
parent e697d3e810
commit dedae29300
5 changed files with 9 additions and 11 deletions

View file

@ -31,11 +31,11 @@ Notes:
#include"ufbv_tactic.h"
tactic * mk_der_fp_tactic(ast_manager & m, params_ref const & p) {
static tactic * mk_der_fp_tactic(ast_manager & m, params_ref const & p) {
return repeat(and_then(mk_der_tactic(m), mk_simplify_tactic(m, p)));
}
tactic * mk_ufbv_preprocessor_tactic(ast_manager & m, params_ref const & p) {
static tactic * mk_ufbv_preprocessor_tactic(ast_manager & m, params_ref const & p) {
params_ref no_elim_and(p);
no_elim_and.set_bool("elim_and", false);

View file

@ -23,8 +23,6 @@ Notes:
class ast_manager;
class tactic;
tactic * mk_ufbv_preprocessor_tactic(ast_manager & m, params_ref const & p = params_ref());
tactic * mk_ufbv_tactic(ast_manager & m, params_ref const & p = params_ref());
/*