Pantograph/docs/proof_search.md

15 lines
260 B
Markdown

# Proof Search
Inherit from the `pantograph.search.Agent` class to create your own search agent.
```python
from pantograph.search import Agent
class UnnamedAgent(Agent):
def next_tactic(self, state, goal_id):
pass
def guidance(self, state):
pass
```