Reputation: 12838
So I'm given some scenarios where I exhaustively generate a list of possible events:
A = True, B = True, C = True -> True
A = False, B = False, C = True -> True
... more lists ...
any suggestions on merging them, to something like
( A || B || C )
thanks
Upvotes: 3
Views: 6062
Reputation: 12592
Karnaugh-Map is a table in which the row and columns are ordered not in a binary order but in a gray code order. Most likely by solving the k-map you can eliminate short-circuit and non-maskable interrupts.
Upvotes: 1