Skip to content

Commit

Permalink
remove tree from SearchResult for efficiency
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaiyu Yang committed Dec 13, 2023
1 parent cd69680 commit 5a84be1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions prover/proof_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ class SearchResult:
theorem: Theorem
status: Status
proof: Optional[List[str]]
tree: Node

# Some statistics during proof search.
actor_time: float
Expand Down Expand Up @@ -113,7 +112,6 @@ def search(
theorem=thm,
status=self.root.status,
proof=proof,
tree=self.root,
actor_time=self.actor_time,
environment_time=self.environment_time,
total_time=self.total_time,
Expand Down

0 comments on commit 5a84be1

Please sign in to comment.