efficient graph rewriting
play

Efficient Graph Rewriting York Semigroup Graham Campbell May 2019 - PowerPoint PPT Presentation

Graphs and Labelling Graph Transformation Efficient Rewriting Confluence Analysis Efficient Graph Rewriting York Semigroup Graham Campbell May 2019 Graham Campbell Efficient Graph Rewriting Graphs and Labelling Graph Transformation


  1. Graphs and Labelling Graph Transformation Efficient Rewriting Confluence Analysis Efficient Graph Rewriting York Semigroup Graham Campbell May 2019 Graham Campbell Efficient Graph Rewriting

  2. Graphs and Labelling Graph Transformation Efficient Rewriting Confluence Analysis Unlabelled Graphs I Definition 1 We can formally define a concrete graph as: G = ( V , E , s : E → V , t : E → V ) where V is a finite set of vertices , E is a finite set of edges . We call s : E → V the source function, and t : E → V the target function. Graham Campbell Efficient Graph Rewriting

  3. Graphs and Labelling Graph Transformation Efficient Rewriting Confluence Analysis Unlabelled Graphs I Definition 1 We can formally define a concrete graph as: G = ( V , E , s : E → V , t : E → V ) where V is a finite set of vertices , E is a finite set of edges . We call s : E → V the source function, and t : E → V the target function. Example: G = ( { 1 , 2 , 3 } , { a , b , c , d } , s , t ) where s = { ( a , 1) , ( b , 2) , ( c , 3) , ( d , 3) } , t = { ( a , 2) , ( b , 1) , ( c , 1) , ( d , 3) } . 1 2 3 Graham Campbell Efficient Graph Rewriting

  4. Graphs and Labelling Graph Transformation Efficient Rewriting Confluence Analysis Unlabelled Graphs I Definition 1 We can formally define a concrete graph as: G = ( V , E , s : E → V , t : E → V ) where V is a finite set of vertices , E is a finite set of edges . We call s : E → V the source function, and t : E → V the target function. Example: G = ( { 1 , 2 , 3 } , { a , b , c , d } , s , t ) where s = { ( a , 1) , ( b , 2) , ( c , 3) , ( d , 3) } , t = { ( a , 2) , ( b , 1) , ( c , 1) , ( d , 3) } . 1 2 3 Definition 2 A graph morphism g : G → H is a pair ( g V : V G → V H , g E : E G → E H ) such that sources and targets are preserved. That is, ∀ e ∈ E G , g V ( s G ( e )) = s H ( g E ( e )) and g V ( t G ( e )) = t H ( g E ( e )). Graham Campbell Efficient Graph Rewriting

  5. Graphs and Labelling Graph Transformation Efficient Rewriting Confluence Analysis Unlabelled Graphs II Definition 3 A graph morphism g : G → H is injective / surjective iff both g V and g E are injective/surjective as functions. We say g is an isomorphism iff it is both injective and surjective. Graham Campbell Efficient Graph Rewriting

  6. Graphs and Labelling Graph Transformation Efficient Rewriting Confluence Analysis Unlabelled Graphs II Definition 3 A graph morphism g : G → H is injective / surjective iff both g V and g E are injective/surjective as functions. We say g is an isomorphism iff it is both injective and surjective. G = H = 1 2 1 3 2 There are four morphisms G → H , three of which are injective, none of which are surjective. There are actually also four morphisms H → G , three of which are surjective. Graham Campbell Efficient Graph Rewriting

  7. Graphs and Labelling Graph Transformation Efficient Rewriting Confluence Analysis Unlabelled Graphs II Definition 3 A graph morphism g : G → H is injective / surjective iff both g V and g E are injective/surjective as functions. We say g is an isomorphism iff it is both injective and surjective. G = H = 1 2 1 3 2 There are four morphisms G → H , three of which are injective, none of which are surjective. There are actually also four morphisms H → G , three of which are surjective. Definition 4 We say that graphs G , H are isomorphic iff there exists a graph isomorphism g : G → H , and we write G ∼ = H . This naturally gives rise to equivalence classes [ G ], called abstract graphs . Graham Campbell Efficient Graph Rewriting

  8. Graphs and Labelling Graph Transformation Efficient Rewriting Confluence Analysis Labelled Graphs I Definition 5 A label alphabet L = ( L V , L E ) consists of finite sets of node labels L V and edge labels L E . Graham Campbell Efficient Graph Rewriting

  9. Graphs and Labelling Graph Transformation Efficient Rewriting Confluence Analysis Labelled Graphs I Definition 5 A label alphabet L = ( L V , L E ) consists of finite sets of node labels L V and edge labels L E . Definition 6 A concrete labelled graph over a label alphabet L is a tuple G = ( V , E , s , t , l , m , p ) where: 1 V is a finite set of vertices ; 2 E is a finite set of edges ; 3 s : E → V is a source function; 4 t : E → V is a target function; 5 l : V → L V is the node labelling function; 6 m : E → L E is the edge labelling function; Graham Campbell Efficient Graph Rewriting

  10. Graphs and Labelling Graph Transformation Efficient Rewriting Confluence Analysis Labelled Graphs II For morphisms between labelled graphs, we require that labels are preserved: ∀ v ∈ V G , l G ( v ) = l H ( g V ( v )) and ∀ e ∈ E G , m G ( e ) = m H ( g E ( e )). s G E G V G t G l G m G L E L V g E g V l H m H s H E H V H t H Graham Campbell Efficient Graph Rewriting

  11. Graphs and Labelling Graph Transformation Efficient Rewriting Confluence Analysis Labelled Graphs II For morphisms between labelled graphs, we require that labels are preserved: ∀ v ∈ V G , l G ( v ) = l H ( g V ( v )) and ∀ e ∈ E G , m G ( e ) = m H ( g E ( e )). s G E G V G t G l G m G L E L V g E g V l H m H s H E H V H t H Definition 7 Given a common alphabet L , we say H is a subgraph of G iff there exists an inclusion morphism H ֒ → G . This happens iff V H ⊆ V G , E H ⊆ E G , s H = s G | E H , t H = t G | E H , l H = l G | V H , m H = m G | E H . Graham Campbell Efficient Graph Rewriting

  12. Graphs and Labelling Graph Transformation Efficient Rewriting Confluence Analysis Rules Let L = ( L V , L E ) be the ambient label alphabet, and graphs be concrete. Definition 8 A rule r = � L ← K → R � consists of labelled graphs L , K , R over L , and inclusions K ֒ → L and K ֒ → R . Graham Campbell Efficient Graph Rewriting

  13. Graphs and Labelling Graph Transformation Efficient Rewriting Confluence Analysis Rules Let L = ( L V , L E ) be the ambient label alphabet, and graphs be concrete. Definition 8 A rule r = � L ← K → R � consists of labelled graphs L , K , R over L , and inclusions K ֒ → L and K ֒ → R . Definition 9 We define the inverse rule to be r − 1 = � R ← K → L � . Graham Campbell Efficient Graph Rewriting

  14. Graphs and Labelling Graph Transformation Efficient Rewriting Confluence Analysis Rules Let L = ( L V , L E ) be the ambient label alphabet, and graphs be concrete. Definition 8 A rule r = � L ← K → R � consists of labelled graphs L , K , R over L , and inclusions K ֒ → L and K ֒ → R . Definition 9 We define the inverse rule to be r − 1 = � R ← K → L � . Definition 10 If r = � L ← K → R � is a rule , then | r | = max {| L | , | R |} , where the size of a graph G is | G | = | V G | + | E G | . Graham Campbell Efficient Graph Rewriting

  15. Graphs and Labelling Graph Transformation Efficient Rewriting Confluence Analysis Rule Application Definition 11 Given a rule r = � L ← K → R � and a labelled graph G , we say that an → G satisfies the dangling condition iff no injective morphism g : L ֒ edge in G \ g ( L ) is incident to a node in g ( L \ K ). Graham Campbell Efficient Graph Rewriting

  16. Graphs and Labelling Graph Transformation Efficient Rewriting Confluence Analysis Rule Application Definition 11 Given a rule r = � L ← K → R � and a labelled graph G , we say that an → G satisfies the dangling condition iff no injective morphism g : L ֒ edge in G \ g ( L ) is incident to a node in g ( L \ K ). Definition 12 To apply a rule r to some labelled graph G , find an injective graph morphism g : L ֒ → G satisfying the dangling condition , then: 1 Delete g ( L \ K ), giving the intermediate graph D ; 2 Add disjointly R \ K to D, giving the result graph H . If the dangling condition fails, the rule is not applicable using match g . We can exhaustively check all matches to determine applicability. Graham Campbell Efficient Graph Rewriting

  17. Graphs and Labelling Graph Transformation Efficient Rewriting Confluence Analysis Direct Derivations Definition 13 We write G ⇒ r , g M for a successful application of r to G using match g , obtaining result M ∼ = H . We call this a direct derivation . Graham Campbell Efficient Graph Rewriting

  18. Graphs and Labelling Graph Transformation Efficient Rewriting Confluence Analysis Direct Derivations Definition 13 We write G ⇒ r , g M for a successful application of r to G using match g , obtaining result M ∼ = H . We call this a direct derivation . Theorem 14 (Derivation Uniqueness) It turns out that deletions are natural pushout complements and gluings are natural pushouts in the category of labelled graphs. Moreover, direct derivations are natural double pushouts , D and H are unique up to isomorphism , and derivations G ⇒ r , g H are invertible . Graham Campbell Efficient Graph Rewriting

  19. Graphs and Labelling Graph Transformation Efficient Rewriting Confluence Analysis Direct Derivations Definition 13 We write G ⇒ r , g M for a successful application of r to G using match g , obtaining result M ∼ = H . We call this a direct derivation . Theorem 14 (Derivation Uniqueness) It turns out that deletions are natural pushout complements and gluings are natural pushouts in the category of labelled graphs. Moreover, direct derivations are natural double pushouts , D and H are unique up to isomorphism , and derivations G ⇒ r , g H are invertible . Definition 15 For a given set of rules R , we write G ⇒ R H iff H is directly derived from G using any of the rules from R . Graham Campbell Efficient Graph Rewriting

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