new semantic

This commit is contained in:
Chuyue Sun 2024-06-05 13:49:34 -07:00
parent 6d60651ed1
commit a5747122cd
1 changed files with 2 additions and 6 deletions

View File

@ -19,11 +19,9 @@ class LLMAgent(Agent):
"intro",
]
self.tactics = [
"intro h",
"cases h",
"simp",
"apply Or.inl",
"apply Or.inr",
"rfl",
"decide",
]
self.no_space_tactics = [
"assumption",
@ -40,10 +38,8 @@ class LLMAgent(Agent):
tactics = self.tactics
else:
tactics = self.no_space_tactics
if i >= len(tactics):
return None
self.goal_tactic_id_map[key] = i + 1
new_state = None
for ii in range(self.n_trials):