__init__.py 456 B

123456789101112
  1. from .boolalg import (to_cnf, to_dnf, to_nnf, And, Or, Not, Xor, Nand, Nor, Implies,
  2. Equivalent, ITE, POSform, SOPform, simplify_logic, bool_map, true, false,
  3. gateinputcount)
  4. from .inference import satisfiable
  5. __all__ = [
  6. 'to_cnf', 'to_dnf', 'to_nnf', 'And', 'Or', 'Not', 'Xor', 'Nand', 'Nor',
  7. 'Implies', 'Equivalent', 'ITE', 'POSform', 'SOPform', 'simplify_logic',
  8. 'bool_map', 'true', 'false', 'gateinputcount',
  9. 'satisfiable',
  10. ]