MCPcopy Create free account
hub / github.com/caelan/pddlstream / elapsed_time

Method elapsed_time

pddlstream/algorithms/common.py:58–59  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

56 def is_solved(self):
57 return self.has_solution() and (self.best_cost <= self.success_cost)
58 def elapsed_time(self):
59 return elapsed_time(self.start_time)
60 def is_timeout(self):
61 return (self.max_time <= self.elapsed_time()) or not check_memory(self.max_memory)
62 def is_terminated(self):

Callers 6

solve_incrementalFunction · 0.95
search_timeMethod · 0.95
is_timeoutMethod · 0.95
export_summaryMethod · 0.95
solve_abstractFunction · 0.95
constraint_satisfactionFunction · 0.95

Calls 1

elapsed_timeFunction · 0.90

Tested by

no test coverage detected