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
Hi, i'm not sure if this is already possible with the library, but it would be nice to automatically generate a list of "don't cares". For example, if I have string-encoded inputs
ones= ['010', '001']
zeros= ['110', '101']
And when I simplify the expressions I get
qm.simplify_los(ones) # {'001', '010'}
However, I desire output {'0--'} based on the above data. At this moment I can achieve this by generating all states that are not inside ones or zeros, but it would be nice to have this functionality built in to the library. For example as follows
Hi, i'm not sure if this is already possible with the library, but it would be nice to automatically generate a list of "don't cares". For example, if I have string-encoded inputs
And when I simplify the expressions I get
However, I desire output
{'0--'}
based on the above data. At this moment I can achieve this by generating all states that are not insideones
orzeros
, but it would be nice to have this functionality built in to the library. For example as followsLet me know if more people desire this, then I will create a PR :)
The text was updated successfully, but these errors were encountered: