Skip to content

Commit

Permalink
Remove debugging code
Browse files Browse the repository at this point in the history
  • Loading branch information
cnheitman committed May 16, 2024
1 parent 8471580 commit 13ce568
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions tritondse/symbolic_explorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,6 @@ def _worker(self, seed, uid):

logger.info(f"Emulation: {self._fmt_secs(expl_ts)} | Solving: {self._fmt_secs(solve_time)} | Elapsed: {self._fmt_secs(self.__time_delta())}\n")

self.current_executor = None
del execution.rtn_table
del cbs
# del execution

def step(self) -> None:
"""
Perform a single exploration step. That means it execute
Expand Down Expand Up @@ -213,7 +208,7 @@ def explore(self) -> ExplorationStatus:

try:
while self.seeds_manager.seeds_available() and not self._stop:
# gc.collect()
gc.collect()
self.step()

if self.status == ExplorationStatus.RUNNING:
Expand Down

0 comments on commit 13ce568

Please sign in to comment.