10 lines
144 B
Python
10 lines
144 B
Python
#from enum import Enum
|
|
|
|
class opertype:
|
|
"""Boolean Formulae Types"""
|
|
unspec = 0
|
|
o_and = 1
|
|
o_or = 2
|
|
o_not = 3
|
|
o_var = 10
|