remove timed until

This commit is contained in:
Marcell Vazquez-Chanlatte 2017-04-20 20:40:49 -07:00
parent 476917860e
commit 94934b56c9
2 changed files with 5 additions and 6 deletions

View file

@ -139,9 +139,9 @@ class G(ModalOp):
return hash(repr(self))
class Until(namedtuple('ModalOp', ['interval', 'arg1', 'arg2']), AST):
class Until(namedtuple('ModalOp', ['arg1', 'arg2']), AST):
def __repr__(self):
return f"({self.arg1} U{self.interval} ({self.arg2}))"
return f"({self.arg1} U ({self.arg2}))"
def children(self):
return [self.arg1, self.arg2]