8
Binary decision diagrams (BDD’s) Compact representation of a logic function ROBDD’s (reduced ordered BDD’s) are a canonical representation: equivalence of ROBDD’s implies that the functions are identical Example: f = abc + b’d + c’d T = then edge, E = else edge Same variable ordering on each path: a b c d (Ordered BDD) Material taken mostly from G. Hachtel and F. Somenzi, “Logic Synthesis and Verification Algorithms,” Kluwer Academic Publishers, Boston, MA, 1996. a b b c c d 1 0 T T T T T T E E E E E E

Binary decision diagrams (BDD’s)

Embed Size (px)

DESCRIPTION

a. E. T. b. b. T. T. E. E. c. c. E. E. d. T. T. T. E. 1. 0. Binary decision diagrams (BDD’s). Compact representation of a logic function ROBDD’s (reduced ordered BDD’s) are a canonical representation: equivalence of ROBDD’s implies that the functions are identical - PowerPoint PPT Presentation

Citation preview

Page 1: Binary decision diagrams (BDD’s)

Binary decision diagrams (BDD’s)

• Compact representation of a logic function

• ROBDD’s (reduced ordered BDD’s) are a canonical representation: equivalence of ROBDD’s implies that the functions are identical

• Example: f = abc + b’d + c’d– T = then edge, E = else edge

– Same variable ordering on

each path: a b c d

(Ordered BDD)

Material taken mostly from G. Hachtel and F. Somenzi, “Logic Synthesis and Verification Algorithms,” Kluwer Academic Publishers, Boston, MA, 1996.

a

bb

c cd

1 0

T

T

T T T

T

E

E E

E

E E

Page 2: Binary decision diagrams (BDD’s)

Effect of variable ordering

• Size of diagram varies with variable orderinga d b c b c a d

b

c

a

d

1 0

T

T

TE

E

E

E

a

d

c c

1 0

T

T

T

T

T

E

E

E

E

E

T T

d

b bEE

T

Page 3: Binary decision diagrams (BDD’s)

Relation to the Shannon expansion

• Each node is basically a Shannon expansion– f = a fa + a’ fa’

a

bb

c cd

1 0

T

T

T T T

T

E

E E

E

E E

f

fa’fa

Page 4: Binary decision diagrams (BDD’s)

Building a BDD from a Shannon expansion

bT E

fb = ac + c’d

f = abc + b’d + c’d

fb’ = d

cfbc’ = d

fbc = aT E

(… and so on …)

Page 5: Binary decision diagrams (BDD’s)

BDD as a compact truth table

• Truth table: complete ordered binary tree

• Reduce this by combining isomorphic parts and removing redundant nodes (T,E point to same node) to get ROBDD

b

c c

d d d d

a a

1 0 1 0

1 0 1 0 1 0

T E

EE

EE

EE

E E

T

T

T T

T T T

T

c cT E

EET T

b

d

1 0

Ea E

T

d ET T

isomorphic

TT

isomorphic

redundant

redundant

BDD shown earlier for the ordering

b c a d

Page 6: Binary decision diagrams (BDD’s)

Multioutput BDD’s

• (Notation: solid line = Then edge; dashed line = Else edge)

• Example: F1 = b+c, F2 = a+ b+c

b

c

1 0

F1

b

c

1 0

a

F2

b

c

1 0

a

F2 F1

Separate BDD’s Combined Multioutput BDD

Page 7: Binary decision diagrams (BDD’s)

Compactness of BDD’s

• BDD’s are successful at compactly representing many common functions– XOR is an example of a function with a large SOP/POS

representation, but a very compact BDD

• Worst case: O(2n) nodes– Functions that require this many nodes do exist

• Can use multilevel techniques to represent BDD’s more compactly (“partitioned ROBDD’s”)

Page 8: Binary decision diagrams (BDD’s)

Operations on BDD’s

• Given BDD’s for functions f and g, can use Shannon expansion to see how operations are performed– Assume variables v1, v2 … vn

– f <op> g = v1 (f <op> g)v1 + v1’ (f <op> g)v1’

= v1 (fv1 <op> gv1) + v1’ (fv1’ <op> gv1’)– Can now do this recursively– Pictorially:

– Identify identical subtrees as we come up the recursion tree using a hashing function

v1

(BDD for fv1 <op> gv1) (BDD for fv1’ <op> gv1’)

ET