start switch to traces from pandas

This commit is contained in:
Marcell Vazquez-Chanlatte 2017-04-23 12:42:57 -07:00
parent b28898820e
commit e477392664
6 changed files with 55 additions and 20 deletions

View file

@ -35,6 +35,8 @@ def _child_lens(psi:STL, focus:Lens) -> STL_Generator:
return
elif psi is stl.TOP or psi is stl.BOT:
return
elif isinstance(psi, stl.ast.Until):
yield from [focus.arg1, focus.arg2]
elif isinstance(psi, NaryOpSTL):
for j, _ in enumerate(psi.args):
yield focus.args[j]