You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the appended input the output is correct, but not fully minified. Right now it seems like the bug is within the Quine-McCluskey implementation, more specifically in the way it deals with don't-care fields (X) and the number of different columns between two rows that of which at least one contains a don't-care field.
E.g. the two rows
I7 I6 I5 I4 I3 I2 I1 I0 O1
0 1 X X X X X X 1
1 X X X X X X X 1
should result in I7 + I6 not in !I7 * I6 + I7.
Input
I7 I6 I5 I4 I3 I2 I1 I0 O1
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 1 0
0 0 0 0 0 0 1 X 0
0 0 0 0 0 1 X X 1
0 0 0 0 1 X X X 1
0 0 0 1 X X X X 0
0 0 1 X X X X X 0
0 1 X X X X X X 1
1 X X X X X X X 1
Issue Description
For the appended input the output is correct, but not fully minified. Right now it seems like the bug is within the Quine-McCluskey implementation, more specifically in the way it deals with don't-care fields (
X
) and the number of different columns between two rows that of which at least one contains a don't-care field.E.g. the two rows
should result in
I7 + I6
not in!I7 * I6 + I7
.Input
Output
Current Version
Table format
Desired
The text was updated successfully, but these errors were encountered: