Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How do I interpret the results? #14

Open
havardox opened this issue Jun 30, 2024 · 0 comments
Open

How do I interpret the results? #14

havardox opened this issue Jun 30, 2024 · 0 comments

Comments

@havardox
Copy link

For example:

from quine_mccluskey.qm import QuineMcCluskey

quine_mccluskey = QuineMcCluskey(use_xor=True)
simplified_expression = quine_mccluskey.simplify([1, 2, 4, 6, 7, 8])

print(simplified_expression)

Output:
{'0^^^', '^0^0', '011-'}

I'm not exactly sure how to interpret these results.

Let's take the second term for example. (^0^0)

Is it

((b3 XOR NOT b2) XOR b1) AND NOT b0

or is it

(b3 XOR NOT b2) AND (b1 XOR NOT b0)

or is it something else entirely?

@havardox havardox changed the title How do I interprate the results? How do I interpret the results? Jun 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant