3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-24 12:07:52 +00:00

add tactic name

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-12-07 13:37:57 -08:00
parent e3bd5badf2
commit 9f2b18cac5
73 changed files with 218 additions and 63 deletions

View file

@ -105,6 +105,8 @@ public:
dealloc(m_imp);
}
char const* name() const override { return "macro_finder"; }
void updt_params(params_ref const & p) override {
m_params = p;
m_imp->updt_params(p);

View file

@ -100,6 +100,8 @@ public:
dealloc(m_imp);
}
char const* name() const override { return "quasi_macros"; }
void updt_params(params_ref const & p) override {
m_params = p;
m_imp->updt_params(p);

View file

@ -28,6 +28,8 @@ public:
ufbv_rewriter_tactic(ast_manager & m, params_ref const & p):
m_manager(m), m_params(p) {}
char const* name() const override { return "ufbv"; }
tactic * translate(ast_manager & m) override {
return alloc(ufbv_rewriter_tactic, m, m_params);
}