mirror of
https://github.com/Z3Prover/z3
synced 2026-01-29 05:18:43 +00:00
Refactor find_tactic_cmd to use std::optional<tactic_cmd*> (#8331)
* Initial plan * Refactor find_tactic_cmd to use std::optional<tactic_cmd*> Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
parent
944777afc0
commit
7b182c9440
4 changed files with 15 additions and 13 deletions
|
|
@ -654,9 +654,9 @@ static tactic * mk_skip_if_failed(cmd_context & ctx, sexpr * n) {
|
|||
|
||||
tactic * sexpr2tactic(cmd_context & ctx, sexpr * n) {
|
||||
if (n->is_symbol()) {
|
||||
tactic_cmd * cmd = ctx.find_tactic_cmd(n->get_symbol());
|
||||
if (cmd != nullptr)
|
||||
return cmd->mk(ctx.m());
|
||||
auto cmd = ctx.find_tactic_cmd(n->get_symbol());
|
||||
if (cmd)
|
||||
return (*cmd)->mk(ctx.m());
|
||||
sexpr * decl = ctx.find_user_tactic(n->get_symbol());
|
||||
if (decl != nullptr)
|
||||
return sexpr2tactic(ctx, decl);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue