formal verifjcation lecture 8 operations on binary
play

Formal Verifjcation Lecture 8: Operations on Binary Decision - PowerPoint PPT Presentation

Formal Verifjcation Lecture 8: Operations on Binary Decision Diagrams (BDDs) Jacques Fleuriot jdf@inf..ac.uk Diagrams from Huth & Ryan, LiCS, 2nd Ed. Recap reduce , apply , restrict , exists Previously: (Reduced, Ordered) Binary


  1. Formal Verifjcation Lecture 8: Operations on Binary Decision Diagrams (BDDs) Jacques Fleuriot jdf@inf..ac.uk Diagrams from Huth & Ryan, LiCS, 2nd Ed.

  2. Recap reduce , apply , restrict , exists ▶ Previously: ▶ (Reduced, Ordered) Binary Decision Diagrams ((RO)BDDs) ▶ Tiis time: ▶ Operations on ROBDDs ▶ Symbolic Model Checking with BDDs

  3. Binary Decision Diagrams Binary Decision Diagrams: DAGs, such that Some notation, for a given BDD node n : ▶ Unique root node ▶ Variables on non-terminal nodes ▶ Truth-values on terminal nodes ▶ Exactly two edges from each non-terminal node, labelled 0 , 1 ▶ If n is a non-terminal node: var ( n ) — the variable label on node n ; lo ( n ) — the node reached by following the 0 edge from n ; hi ( n ) — the node reached by following the 1 edge from n ; ▶ If n is a terminal node: val ( n ) — the truth value labelling n For a BDD B , the root node is called root ( B ) .

  4. reduce reduce constructs a ROBDD from an OBDD. 2. in a single botuom-up pass, such that: if and only if m and n represent the same boolean function. Tie ROBDD is then created by using one node from each class of nodes with the same label. 1. Label each OBDD node n with an integer id ( n ) , 3. two OBDD nodes m and n have the same label (id ( m ) = id ( n ) )

  5. reduce To label a node n : if there exists a node m that has already been labelled such that Assignment of labels follows the rules for performing reductions. ▶ Remove duplicate terminals: if n is a terminal node ( i.e. , 0 or 1 ), then set id ( n ) to be val ( n ) . ▶ Remove redundant tests: if id ( lo ( n )) = id ( hi ( n )) then set id ( n ) to be id ( lo ( n )) . ▶ Remove duplicate nodes:   var ( m ) = var ( n )   lo ( m ) = lo ( n )  , set id ( n ) to id ( m ) . hi ( m ) = hi ( n )  Use a hashtable with ⟨ var ( n ) , lo ( n ) , hi ( n ) ⟩ keys for O (1) lookup time. ▶ Otherwise, set id ( n ) to an unused number.

  6. reduce Example � � � � � � � � � In practice, labelling and construction are interleaved. � � ���� ���� x # 4 1 ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ���� ���� ���� ���� x # 3 x # 2 2 2 ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ���� ���� ���� ���� x # 2 x # 2 3 3 0 # 0 1 # 1 0 # 0 1 # 1

  7. reduce Example � � � � � � � � � In practice, labelling and construction are interleaved. � � ���� ���� x # 4 1 ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ���� ���� ���� ���� x # 3 x # 2 2 2 ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ���� ���� ���� ���� x # 2 x # 2 3 3 0 # 0 1 # 1 0 # 0 1 # 1

  8. reduce Example � � � � � � � � � In practice, labelling and construction are interleaved. � � ���� ���� x # 4 1 ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ���� ���� ���� ���� x # 3 x # 2 2 2 ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ���� ���� ���� ���� x # 2 x # 2 3 3 0 # 0 1 # 1 0 # 0 1 # 1

  9. reduce Example � � � � � � � � � In practice, labelling and construction are interleaved. � � ���� ���� x # 4 1 ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ���� ���� ���� ���� x # 3 x # 2 2 2 ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ���� ���� ���� ���� x # 2 x # 2 3 3 0 # 0 1 # 1 0 # 0 1 # 1

  10. reduce Example � � � � � � � � � In practice, labelling and construction are interleaved. � � ���� ���� x # 4 1 ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ���� ���� ���� ���� x # 3 x # 2 2 2 ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ���� ���� ���� ���� x # 2 x # 2 3 3 0 # 0 1 # 1 0 # 0 1 # 1

  11. reduce Example � � � � � � � � � In practice, labelling and construction are interleaved. � � ���� ���� x # 4 1 ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ���� ���� ���� ���� x # 3 x # 2 2 2 ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ���� ���� ���� ���� x # 2 x # 2 3 3 0 # 0 1 # 1 0 # 0 1 # 1

  12. reduce Example � � � � � � � � � In practice, labelling and construction are interleaved. � � ���� ���� x # 4 1 ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ���� ���� ���� ���� x # 3 x # 2 2 2 ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ���� ���� ���� ���� x # 2 x # 2 3 3 0 # 0 1 # 1 0 # 0 1 # 1

  13. reduce Example � � � � � � � � � In practice, labelling and construction are interleaved. � � ���� ���� x # 4 1 ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ���� ���� ���� ���� x # 3 x # 2 2 2 ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ���� ���� ���� ���� x # 2 x # 2 3 3 0 # 0 1 # 1 0 # 0 1 # 1

  14. reduce Example � � � � � � � � � In practice, labelling and construction are interleaved. � � ���� ���� x # 4 1 ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ���� ���� ���� ���� x # 3 x # 2 2 2 ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ✶ ���� ���� ���� ���� x # 2 x # 2 3 3 0 # 0 1 # 1 0 # 0 1 # 1

  15. reduce Example � � � � � � Reduces to � � � � � � � � In practice, labelling and construction are interleaved. � � ���� ���� ���� ���� x # 4 x # 4 1 1 ✶ ✭ ✶ ✭ ✶ ✭ ✶ ✭ ✶ ✶ ✭ ✶ ✭ ✶ ✭ ✶ ✭ ���� ���� ���� ���� ���� ���� ✭ x # 3 x # 2 x # 3 ✭ ✭ 2 2 2 ✭ ❇ ✶ ✶ ❇ ✭ ✶ ✶ ❇ ✭ ✶ ✶ ❇ ✭ ✶ ✶ ❇ ❇ ✶ ✶ ✭ ❇ ✶ ✶ ✭ ❇ ✶ ✶ ❇ ✭ ✶ ✶ ❇ � ✭ ✶ ✶ ❇ ❇ ���� ���� ���� ���� ���� ���� x # 2 x # 2 x # 2 3 3 3 0 # 0 1 # 1 0 # 0 1 # 1 0 # 0 1 # 1

  16. reduce Example � � � � � � Reduces to � � � � � � � � In practice, labelling and construction are interleaved. � � ���� ���� ���� ���� x # 4 x # 4 1 1 ✶ ✭ ✶ ✭ ✶ ✭ ✶ ✭ ✶ ✶ ✭ ✶ ✭ ✶ ✭ ✶ ✭ ���� ���� ���� ���� ���� ���� ✭ x # 3 x # 2 x # 3 ✭ ✭ 2 2 2 ✭ ❇ ✶ ✶ ❇ ✭ ✶ ✶ ❇ ✭ ✶ ✶ ❇ ✭ ✶ ✶ ❇ ❇ ✶ ✶ ✭ ❇ ✶ ✶ ✭ ❇ ✶ ✶ ❇ ✭ ✶ ✶ ❇ � ✭ ✶ ✶ ❇ ❇ ���� ���� ���� ���� ���� ���� x # 2 x # 2 x # 2 3 3 3 0 # 0 1 # 1 0 # 0 1 # 1 0 # 0 1 # 1

  17. apply Given compatible OBDDs B f and B g that represent formulas f and g , apply ( □ , B f , B g ) computes an OBDD representing f □ g . ▶ where □ represents some binary operation on boolean formulas for example, ∧ , ∨ , ⊕ ▶ Unary operations can be handled too. for example, negation: ¬ x = x ⊕ 1

  18. apply : Shannon expansions x Shannon normal form. 2. Tie BDD is efgectively a compressed representation of f in x ; and x and B represents f 1. B represents f represents a boolean function f , then: B B x If a BDD x g f For any boolean formula f and variable x , it can be writuen as: x x g x f x g f g can be expanded like so: In particular: f Tiis is the Shannon expansion of f (originally due to G. Boole). So: implement apply recursively on the structure of the BDDs. f ≡ ( ¬ x ∧ f [0/ x ]) ∨ ( x ∧ f [1/ x ])

  19. apply : Shannon expansions B Shannon normal form. 2. Tie BDD is efgectively a compressed representation of f in x ; and x and B represents f 1. B represents f represents a boolean function f , then: B For any boolean formula f and variable x , it can be writuen as: x If a BDD Tiis is the Shannon expansion of f (originally due to G. Boole). So: implement apply recursively on the structure of the BDDs. f ≡ ( ¬ x ∧ f [0/ x ]) ∨ ( x ∧ f [1/ x ]) In particular: f □ g can be expanded like so: f □ g ≡ ( ¬ x ∧ ( f [0/ x ] □ g [0/ x ])) ∨ ( x ∧ ( f [1/ x ] □ g [1/ x ]))

Recommend


More recommend