remove timed until
This commit is contained in:
parent
476917860e
commit
94934b56c9
2 changed files with 5 additions and 6 deletions
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue