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

529 users

0 votes

at the end of the constraint and restrict algorithms, when we calculate all the steps, how can we  get the shannon normal form?

for example in page 48 of solution 3 (https://es.cs.uni-kl.de/teaching/vrs/exercises/03-Solutions.pdf) how exactly do we get the shannon normal form from the steps we did before?

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

1 Answer

0 votes

In all ROBDD algorithms, we are creating a list of labelled nodes (like N_26, N_6, and so on). One of these nodes is the final result. Besides this label, each node has a variable name, a high-child, and a low-child. ROBDD-nodes have the semantics “If the variable I'm representing is true, refer to my high-child for evaluation, if it is false, refer to my low child“.

This semantics is the same as we know it from if-then-else and the Shanon Normal Form. Also, the Shanon normal form obeys to a similar syntactic rule as ROBDDs. It starts (outside) with the variable with the highest order, and towards the inner-most terminal nodes, it follows the variable order. ROBDDs do the same. The root node is highest in the ordering, and along the path, the ariables are ordered.

Hence, the Shanon Normal Form is just a textual representation of the ROBDDs with one difference: Shanon Normal Form has no pointers. If a node occurs twice as a child, an ROBDD shows it only once but with two pointers to it. In Shanon Normal Form, these nodes have to be repeated.

Easy ROBDD to SNF: The SNF of an ROBDD node is

  1. If the node is the 0-leaf, then 0
  2. If the node is the 1-leaf, then 1
  3. If the node is labelled with variable X, has the high-child Y, and the low-child Z, then X ? (Y : Z)
by (25.6k points)

Related questions

0 votes
1 answer
0 votes
1 answer
asked May 8, 2020 in * TF "Emb. Sys. and Rob." by sschwarz (1.7k points)
+1 vote
1 answer
asked May 6, 2020 in * TF "Emb. Sys. and Rob." by EngiMary (1.7k points)
0 votes
1 answer
0 votes
1 answer
asked May 16, 2022 in * TF "Emb. Sys. and Rob." by zain (440 points)
Imprint | Privacy Policy
...