propogate TRUE/FALSE encoding changes

This commit is contained in:
Marcell Vazquez-Chanlatte 2018-09-08 00:47:45 -07:00
parent a72a1a1665
commit fb2e79b807
3 changed files with 5 additions and 5 deletions

View file

@ -103,7 +103,7 @@ class _Top(AST):
__slots__ = ()
def __repr__(self):
return "1"
return "TRUE"
def __invert__(self):
return BOT
@ -113,7 +113,7 @@ class _Bot(AST):
__slots__ = ()
def __repr__(self):
return "0"
return "FALSE"
def __invert__(self):
return TOP