Create a Solver that uses this tactic.
(self)
| 100 | return ApplyResult([goal]) # unchanged |
| 101 | |
| 102 | def solver(self): |
| 103 | """Create a Solver that uses this tactic.""" |
| 104 | return Solver() |
| 105 | |
| 106 | def __repr__(self) -> str: |
| 107 | return f"Tactic({self._name})" |