我有一个包含值的 CSV 文件,我目前正在制定一个命题公式。
这是一个示例:
x=6,y=-5,z=4.
6 = 110
-5 = 1101
4 = 100
我的公式:
( (x2 and x1 and not (x0)) and (y3 and y2 and not(y1) and y0) and (z2 and not(z1) and not(z0)) )
现在我生成一个相同的 BDD。如果我想要一个人类/嵌入式系统从我的图表中理解,1101 可以表示为 13 或 -5。任何负数都可以有 2 种表示形式。有什么方法可以让我只做一个吗?