I have a CSV file with values and I am currently formulating a propositional formulae.
Here is a sample:
x=6,y=-5,z=4.
6 = 110
-5 = 1101
4 = 100
My formulae:
( (x2 and x1 and not (x0)) and (y3 and y2 and not(y1) and y0) and (z2 and not(z1) and not(z0)) )
Now I generate a BDD with the same. If I want a human/embedded system to understand from my diagram 1101 could be represented as 13 or -5. Any negative number can have 2 representations. Is there any way that I can make it only to one?