chore: Remove unused code

This commit is contained in:
Leni Aniva 2024-06-05 11:19:43 -07:00
parent 61b3a1b3d2
commit 4f3397fd82
Signed by: aniva
GPG Key ID: 4D9B1C8D10EA4C50
1 changed files with 0 additions and 2 deletions

View File

@ -31,7 +31,5 @@ if __name__ == '__main__':
test_data = read_test_data() test_data = read_test_data()
server = Server(imports=["Mathlib"], project_path=project_path, lean_path=lean_path) server = Server(imports=["Mathlib"], project_path=project_path, lean_path=lean_path)
target = "∀ (b h v : ) (h₀ : 0 < b ∧ 0 < h ∧ 0 < v) (h₁ : v = 1 / 3 * (b * h)) (h₂ : b = 30) (h₃ : h = 13 / 2) , v = 65"
# target = "theorem mathd_algebra_478\n (b h v : )\n (h₀ : 0 < b ∧ 0 < h ∧ 0 < v)\n (h₁ : v = 1 / 3 * (b * h))\n (h₂ : b = 30)\n (h₃ : h = 13 / 2) :\n v = 65 := sorry"
agent = LLMAgent(server) agent = LLMAgent(server)
try_test_data(server, agent, test_data[0]) try_test_data(server, agent, test_data[0])