|
Adiar 2.1.0
An External Memory Decision Diagram Library
|
Conversion from Binary Decision Diagrams . More...
Functions | |
| __zdd | adiar::zdd_from (const bdd &f, const generator< zdd::label_type > &dom) |
| Obtains the ZDD that represents the same function/set as the given BDD within the given domain. | |
| template<typename ForwardIt > | |
| __zdd | adiar::zdd_from (const bdd &f, ForwardIt begin, ForwardIt end) |
| Obtains the ZDD that represents the same function/set as the given BDD within the given domain. | |
| __zdd | adiar::zdd_from (const bdd &f) |
| Obtains the ZDD that represents the same function/set as the given BDD within the global Variable Domain. | |
Conversion from Binary Decision Diagrams .
Obtains the ZDD that represents the same function/set as the given BDD within the global Variable Domain.
| f | Boolean function with the given domain |
A.Obtains the ZDD that represents the same function/set as the given BDD within the given domain.
| f | Boolean function with the given domain |
| dom | Domain of all variables in ascending order. All generated values should be smaller than or equals to zdd::max_label. |
Obtains the ZDD that represents the same function/set as the given BDD within the given domain.
| f | Boolean function with the given domain |
| begin | Single-pass forward iterator that provides the domain's variables in ascending order. None of its values may exceed zdd::max_label. |
| end | Marks the end for begin. |