I am reimplementing (for fun, a bit of work and a severe case of NIH) a ROBDD library. I would like to have a few "reference" graphs built by other libraries to compare results [*]
E.g., given the variable order x1 < y1 < x2 < y2, what would be the graph obtained for
(x1 <=> y1) /\ not (x2 <=> y2) /\ (x2 <=> y2) [**]
I am assuming standard operators. Also, if it helps, I assume /\ is left-associative.
Any other smallish example will be welcome.
Thanks
Marco
[*] I know! I should download libraries, install them and use them, but I am lazy.
[**] The example is taken from a the Moeller and Oestergard's example that is floating around the net.