mirror of
https://github.com/Z3Prover/z3
synced 2025-04-25 10:05:32 +00:00
add tactic name
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
e3bd5badf2
commit
9f2b18cac5
73 changed files with 218 additions and 63 deletions
|
@ -757,6 +757,8 @@ public:
|
|||
init();
|
||||
}
|
||||
|
||||
char const* name() const override { return "parallel_tactic"; }
|
||||
|
||||
void operator()(const goal_ref & g,goal_ref_buffer & result) override {
|
||||
cleanup();
|
||||
fail_if_proof_generation("parallel-tactic", g);
|
||||
|
|
|
@ -186,6 +186,8 @@ public:
|
|||
tactic * translate(ast_manager & m) override {
|
||||
return alloc(solver2tactic, m_solver->translate(m, m_params));
|
||||
}
|
||||
|
||||
char const* name() const override { return "solver2tactic"; }
|
||||
};
|
||||
|
||||
tactic* mk_solver2tactic(solver* s) { return alloc(solver2tactic, s); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue