logicmin icon indicating copy to clipboard operation
logicmin copied to clipboard

Logic Minimization in Python

Results 2 logicmin issues
Sort by recently updated
recently updated
newest added

Say, I want all possible inputs ending with '000' to be mapped to a certain output: ```python import logicmin t = logicmin.TT(7,16) t.add("----000","0100000000000010") ``` logicmin would then generate all possibilities...

enhancement