2024-10-17 21:28:23 -07:00
|
|
|
# Proof Search
|
2024-10-17 21:03:18 -07:00
|
|
|
|
2024-10-18 15:19:58 -07:00
|
|
|
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
|
|
|
|
```
|
2024-10-17 21:03:18 -07:00
|
|
|
|