reduced ordered binary decision diagrams
play

Reduced Ordered Binary Decision Diagrams Lecture #13 of Advanced - PowerPoint PPT Presentation

Reduced Ordered Binary Decision Diagrams Lecture #13 of Advanced Model Checking Joost-Pieter Katoen Lehrstuhl 2: Software Modeling & Verification E-mail: katoen@cs.rwth-aachen.de June 16, 2014 c JPK Advanced model checking Basic


  1. Reduced Ordered Binary Decision Diagrams Lecture #13 of Advanced Model Checking Joost-Pieter Katoen Lehrstuhl 2: Software Modeling & Verification E-mail: katoen@cs.rwth-aachen.de June 16, 2014 c � JPK

  2. Advanced model checking Basic approach • let TS = ( S, → , I, AP , L ) be a “large” finite transition system – the set of actions is irrelevant here and has been omitted, i.e., →⊆ S × S • For n � ⌈ log | S |⌉ , let injective function enc : S → { 0 , 1 } n – note: enc ( S ) = { 0 , 1 } n is no restriction, as all elements { 0 , 1 } n \ enc ( S ) can be treated as the encoding of pseudo states that are unreachable • Identify the states s ∈ S = enc − 1 ( { 0 , 1 } n ) with enc ( s ) ∈ { 0 , 1 } n • And T ⊆ S by its characteristic function χ T : { 0 , 1 } n → { 0 , 1 } – that is χ T ( enc ( s )) = 1 if and only if s ∈ T • And → ⊆ S × S by the Boolean function ∆ : { 0 , 1 } 2 n → { 0 , 1 } � � enc ( s ) , enc ( s ′ ) = 1 if and only if s → s ′ – such that ∆ c � JPK 1

  3. Advanced model checking Switching functions • Let Var = { z 1 , . . . , z m } be a finite set of Boolean variables • An evaluation is a function η : Var → { 0 , 1 } – let Eval ( z 1 , . . . , z m ) denote the set of evaluations for z 1 , . . . , z m – shorthand [ z 1 = b 1 , . . . , z m = b m ] for η ( z 1 ) = b 1 , . . . , η ( z m ) = b m • f : Eval ( Var ) → { 0 , 1 } is a switching function for Var = { z 1 , . . . , z m } • Logical operations and quantification are defined by: f 1 ( · ) ∧ f 2 ( · ) = min { f 1 ( · ) , f 2 ( · ) } f 1 ( · ) ∨ f 2 ( · ) = max { f 1 ( · ) , f 2 ( · ) } ∃ z. f ( · ) = f ( · ) | z =0 ∨ f ( · ) | z =1 , and ∀ z. f ( · ) = f ( · ) | z =0 ∧ f ( · ) | z =1 c � JPK 2

  4. Advanced model checking Polynomial-size data structure impossible • There is no poly-size data structure for all switching functions – | Eval ( z 1 , . . . , z m ) | = 2 m , so # functions Eval ( z 1 , . . . , z m ) → { 0 , 1 } is 2 2 m • Suppose there is a data structure that can represent K m switching functions by at most 2 m − 1 bits • Then K m � � 2 m − 1 2 i = 2 2 m − 1 +1 − 1 2 2 m − 1 +1 < i =0 • But then there are at least 2 2 m − 2 2 m − 1 +1 = 2 2 m − 1 +1 · � � � � 2 2 m − 2 m − 1 − 1 − 1 = 2 2 m − 1 +1 · 2 2 m − 1 − 1 − 1 switching functions whose representation needs more than 2 m − 1 bits c � JPK 3

  5. Advanced model checking Representing switching functions • Truth tables – very space inefficient: 2 n entries for n variables – satisfiability and equivalence check: easy; boolean operations also easy – . . . but have to consider exponentially many lines (so are hard) • . . . in Disjunctive Normal Form (DNF) – satisfiability is easy: find a disjunct that does have complementary literals – negation and conjunction complicated – equivalence checking ( f = g ?) is coNP-complete • . . . in Conjunctive Normal Form (CNF) – satisfiability problem is NP-complete (Cook’s theorem) – negation and disjunction complicated c � JPK 4

  6. Advanced model checking Representing switching functions representation compact? sat equi ∧ ∨ ¬ propositional formula often hard hard easy easy easy DNF sometimes easy hard hard easy hard CNF sometimes hard hard easy hard hard (ordered) truth table never hard hard hard hard hard c � JPK 5

  7. Advanced model checking There is hope . . . . . . perhaps Nevertheless there are data structures which yield compact representations for many switching functions that appear in practical applications for hardware circuits, ordered binary decision diagrams (OBDDs) are successful c � JPK 6

  8. Advanced model checking Representing boolean functions ∧ ∨ ¬ representation compact? sat equ propositional formula often hard hard easy easy easy DNF sometimes easy hard hard easy hard CNF sometimes hard hard easy hard hard (ordered) truth table never hard hard hard hard hard reduced ordered easy ∗ binary decision diagram often easy medium medium easy ∗ provided appropriate implementation techniques are used c � JPK 7

  9. Advanced model checking Binary decision tree • The BDT for function f on Var = { z 1 , . . . , z m } has depth m – outgoing edges for node at level i stand for z i = 0 (dashed) and z i = 1 (solid) • For evaluation s = [ z 1 = b 1 , . . . , z m = b m ] , f ( s ) is the value of the leaf – reached by traversing the BDT from the root using branch z i = b i for at level i • The subtree of node v at level i for variable ordering z 1 < . . . < z m represents f v = f | z 1 = b 1 ,..., z i − 1 = b i − 1 – which is a switching function over { z i , . . . , z m } and – where z 1 = b 1 , . . . , z i − 1 = b i − 1 is the sequence of decisions made along the path from the root to node v c � JPK 8

  10. Advanced model checking Symbolic representation of a transition system a s 0 s 1 ∅ s 3 s 2 b { a, b } , x ′ 1 , x ′ ) = 1 if and only if s → s ′ Switching function: ∆( x 1 , x 2 2 � �� � � �� � s s ′ ∆( x 1 , x 2 , x ′ 1 , x ′ ¬ x ′ 1 ∧ x ′ 2 ) = ( ¬ x 1 ∧ ¬ x 2 ∧ 2 ) ¬ x 2 ∧ x ′ 1 ∧ x ′ ∨ ( ¬ x 1 ∧ 2 ) ( ¬ x 1 ∧ x 2 ∧ x ′ ¬ x ′ ∨ 1 ∧ 2 ) ∨ . . . ( x 1 ∧ x 2 ∧ x ′ 1 ∧ x ′ ∨ 2 ) c � JPK 9

  11. Advanced model checking Transition relation as a BDT x 1 x 2 x 2 x ′ x ′ x ′ x ′ 1 1 1 1 x ′ x ′ x ′ x ′ x ′ x ′ x ′ x ′ 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 A BDT representing ∆ for our example using ordering x 1 < x 2 < x ′ 1 < x ′ 2 c � JPK 10

  12. Advanced model checking Considerations on BDTs • BDTs are not compact – a BDT for switching function f on n variables has 2 n leafs ⇒ they are as space inefficient as truth tables! ⇒ BDTs contain quite some redundancy – all leafs with value one (zero) could be collapsed into a single leaf – a similar scheme could be adopted for isomorphic subtrees • The size of a BDT does not change if the variable order changes c � JPK 11

  13. Advanced model checking Ordered Binary Decision Diagram Let ℘ be a variable ordering for Var where z 1 < ℘ . . . < ℘ z m An ℘ -OBDD is a tuple B = ( V, V I , V T , succ 0 , succ 1 , var , val , v 0 ) with • a finite set V of nodes, partitioned into V I (inner) and V T (terminals) – and a distinguished root v 0 ∈ V • successor functions succ 0 , succ 1 : V I → V – such that each node v ∈ V \ { v 0 } has at least one predecessor • labeling functions var : V I → Var and val : V T → { 0 , 1 } satisfying v ∈ V I ∧ w ∈ { succ 0 ( v ) , succ 1 ( v ) } ∩ V I ⇒ var ( v ) < ℘ var ( w ) c � JPK 12

  14. Advanced model checking Transition relation as an OBDD x 1 x 2 x 2 x ′ x ′ x ′ x ′ 1 1 1 1 x ′ x ′ x ′ x ′ 2 2 2 2 1 1 1 1 1 0 0 0 An example OBDD representing f → for our example using x 1 < x 2 < x ′ 1 < x ′ 2 c � JPK 13

  15. Advanced model checking Bottom-up characterization of f B Let B be a ℘ -OBDD. Switching function f v for node v ∈ V : • If v ∈ V T , then f v is the constant switching function with value val ( v ) � � � � • If v ∈ V I with var ( v ) = z , then f v = ¬ z ∧ f succ 0 ( v ) ∨ z ∧ f succ 1 ( v ) � �� � Shannon expansion Furthermore, f B = f v 0 for the root v 0 of B c � JPK 14

  16. Advanced model checking Consistent co-factors in OBDDs • Let f be a switching function for Var • Let ℘ = ( z 1 , . . . , z m ) a variable ordering for Var , i.e., z 1 < ℘ . . . < ℘ z m • Switching function g is a ℘ -consistent cofactor of f if g = f | z 1 = b 1 ,..., z i = b i for some i ∈ { 0 , 1 , . . . , m } • Then it holds that: 1. for each node v of an ℘ -OBDD B , f v is a ℘ -consistent cofactor of f B 2. for each ℘ -consistent cofactor g of f B there is a node v ∈ B with f v = g c � JPK 15

  17. Advanced model checking Reduced OBDDs A ℘ -OBDD B is reduced if for every pair ( v, w ) of nodes in B : v � = w implies f v � = f w (A reduced ℘ -OBDD is abbreviated as ℘ -ROBDD) ⇒ in ℘ -ROBDDs any ℘ -consistent cofactor is represented by exactly one node c � JPK 16

  18. Advanced model checking Transition relation as an ROBDD x 1 x 1 x 2 x 2 x ′ x ′ 1 1 x ′ x ′ x ′ x 2 1 1 1 x ′ x ′ x ′ x ′ 2 2 2 2 1 0 1 0 (b) ordering x 1 < ′ x ′ 1 < ′ x 2 < ′ x ′ (a) ordering x 1 < x 2 < x ′ 1 < x ′ 2 2 c � JPK 17

  19. Advanced model checking Universality and canonicity theorem [Fortune, Hopcroft & Schmidt, 1978] Let Var be a finite set of Boolean variables and ℘ a variable ordering for Var . Then: (a) For each switching function f for Var there exists a ℘ -ROBDD B with f B = f (b) Any ℘ -ROBDDs B and C with f B = f C are isomorphic Any ℘ -OBDD B for f is reduced iff size ( B ) � size ( C ) for each ℘ -OBDD C for f c � JPK 18

  20. Advanced model checking Proofs c � JPK 19

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend