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
Since we already provide ZDD operations with BDD semantics (i.e. zdd_top(), zdd_bot(), zdd_ithvar(x), and zdd_nithvar(x)), we may as well also provide the if-then-else operation. Currently, the end-user would have to fake it by computing (f & g) | (~f & h)
Add zdd_ite by generalising bdd_ite into a common prod3 algorithm ( see also Add bdd_compose #148 )
The text was updated successfully, but these errors were encountered:
Since we already provide ZDD operations with BDD semantics (i.e.
zdd_top()
,zdd_bot()
,zdd_ithvar(x)
, andzdd_nithvar(x)
), we may as well also provide the if-then-else operation. Currently, the end-user would have to fake it by computing(f & g) | (~f & h)
zdd_ite
by generalisingbdd_ite
into a commonprod3
algorithm ( see also Addbdd_compose
#148 )The text was updated successfully, but these errors were encountered: