remove debug statement
This commit is contained in:
parent
00ec325589
commit
8ec0013235
1 changed files with 1 additions and 4 deletions
|
|
@ -42,10 +42,7 @@ def get_times(x, tau, lo=None, hi=None):
|
|||
lo = min(v.first()[0] for v in x.values())
|
||||
if hi is None or hi is oo:
|
||||
hi = max(v.last()[0] for v in x.values())
|
||||
try:
|
||||
end = min(v.domain.end() for v in x.values())
|
||||
except:
|
||||
import pdb; pdb.set_trace()
|
||||
hi = hi + tau if hi + tau <= end else end
|
||||
lo = lo + tau if lo + tau <= end else end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue