mirror of
https://github.com/Z3Prover/z3
synced 2026-02-13 04:13:01 +00:00
Revert "Refactor find_tactic_cmd to use std::optional<tactic_cmd*> (#8331)"
This reverts commit 7b182c9440.
This commit is contained in:
parent
3f26d42215
commit
76d46ee48a
4 changed files with 13 additions and 15 deletions
|
|
@ -20,7 +20,6 @@ Notes:
|
|||
#include "cmd_context/tactic_cmds.h"
|
||||
#include "cmd_context/simplifier_cmds.h"
|
||||
#include "util/dictionary.h"
|
||||
#include <optional>
|
||||
|
||||
class tactic_manager {
|
||||
protected:
|
||||
|
|
@ -37,7 +36,7 @@ public:
|
|||
void insert(tactic_cmd * c);
|
||||
void insert(simplifier_cmd* c);
|
||||
void insert(probe_info * p);
|
||||
std::optional<tactic_cmd*> find_tactic_cmd(symbol const & s) const;
|
||||
tactic_cmd * find_tactic_cmd(symbol const & s) const;
|
||||
probe_info * find_probe(symbol const & s) const;
|
||||
simplifier_cmd* find_simplifier_cmd(symbol const& s) const;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue