Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 446 Bytes

File metadata and controls

19 lines (14 loc) · 446 Bytes

Logic Function Solver

This is a logic function solver using Tabulation Method.

For Windows

python logic_function_solver.py

For Linux

python3 logic_function_solver.py

Inputs

  1. The number of variables
  2. The minterms of the logic function
  3. Don't cares (Optional)

Outputs

  1. All Prime Implicants of the logic function
  2. The minimum SOP expression of the logic function
  3. The minimum POS expression of the logic function