You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
456 B
13 lines
456 B
5 months ago
|
from .boolalg import (to_cnf, to_dnf, to_nnf, And, Or, Not, Xor, Nand, Nor, Implies,
|
||
|
Equivalent, ITE, POSform, SOPform, simplify_logic, bool_map, true, false,
|
||
|
gateinputcount)
|
||
|
from .inference import satisfiable
|
||
|
|
||
|
__all__ = [
|
||
|
'to_cnf', 'to_dnf', 'to_nnf', 'And', 'Or', 'Not', 'Xor', 'Nand', 'Nor',
|
||
|
'Implies', 'Equivalent', 'ITE', 'POSform', 'SOPform', 'simplify_logic',
|
||
|
'bool_map', 'true', 'false', 'gateinputcount',
|
||
|
|
||
|
'satisfiable',
|
||
|
]
|