Files
aristotle/run_aristotle.py
Stefan Kebekus 7eb9cf9772
Some checks failed
Lean Action CI / build (push) Has been cancelled
Create Release / Add Lean release tag (push) Has been cancelled
Working…
2025-10-25 07:07:57 +02:00

10 lines
270 B
Python
Executable File

import asyncio
import aristotlelib
async def main():
# Prove a theorem from a Lean file
solution_path = await aristotlelib.Project.prove_from_file("/home/kebekus/Mathe/aristotle/Basic.lean")
print(f"Solution saved to: {solution_path}")
asyncio.run(main())