Here you can ask questions and find or give answers to organizational, academic and other questions about studying computer science.

1.1k questions

1.2k answers

1.6k comments

532 users

0 votes

In order to get ZDD from FDD we need to:

1. Get a set representation of FDD

2. Write the RMNF

3. Write the minterms of RMNF then replace XOR with OR (or write the truth table)

4. Get a set representation of the min terms

5. Draw ZDD from the set representation

How do I get ZDD from set representation?

Linking relevant question here.

in * TF "Emb. Sys. and Rob." by (660 points)

1 Answer

0 votes

A ZDD stores a set of sets as explained on slides 140-142 of the BDD chapter. The set of minterms {}, {a}, {c}, {a,c}, {a,b,c} is thereby decomposed as follows (using the variable ordering 

    a = 1: {a},{a,c},{a,b,c} --> {},{c},{b,c}
    a = 0: {},{c}

Note: first split the set {{},{a},{c},{a,c},{a,b,c}} into the minterms that contain a, i.e., {a},{a,c},{a,b,c}, and those that do not contain a, i.e., {},{c}, then remove a. 

The procedure is then repeated for all variables until only {} and {{}} occur which are the leaf nodes.

by (166k points)

Related questions

0 votes
2 answers
+1 vote
1 answer
0 votes
1 answer
asked Feb 14, 2023 in * TF "Emb. Sys. and Rob." by obeng (260 points)
0 votes
1 answer
Imprint | Privacy Policy
...