User Tools

Site Tools


tutorials:common_rewriting_rules

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
tutorials:common_rewriting_rules [2024/05/02 17:37] – created TimObtutorials:common_rewriting_rules [2025/01/10 11:15] (current) gaetan
Line 5: Line 5:
 Of the two structural rules this one is much more commonly used in GroIMP.  Of the two structural rules this one is much more commonly used in GroIMP. 
 It replaces each instance of the pattern defined on the left side with the new created graph structure on the right side. It replaces each instance of the pattern defined on the left side with the new created graph structure on the right side.
 +<code>
 +<pattern> ==> <structure>;
 +</code>
  
 +So if all A's in the model should be replaced by F's the patterns a the A's and the new structure is an F:
  
 +<code>
 +A ==> F;
 +</code>
 +==== pattern side ====
  
-===== SPO stlye =====+ 
 +The definition of the pattern that should be replaced can be defined by using [[:groimp-platform:graph_queries| xl syntax]] and [[:groimp-platform:xl-builtin-methods|XL builtin methods]]. 
 + 
 +<code> 
 +A[F] ==> F; 
 +</code> 
 + 
 +<code> 
 +first((*A*)) ==> F; 
 +</code> 
 + 
 +Additionally the pattern can be defined using conditions: 
 + 
 +<code> 
 +A(1)==>F; 
 +</code> 
 + 
 +<code> 
 +a:A,(a.len!=1)==>F; 
 +</code> 
 + 
 +==== structure side ==== 
 + 
 +A more complex structure can be created by using the  [[:3d-guide:3d-manipulations#turtle_commands|turtle geometry]] and  [[:3d-guide:3d-manipulations#graph-syntax|graph-syntax]].  
 +<code> 
 +A ==> F [RL(90) F A] F +> A; 
 +</code> 
 +With the addition of modules and 3d objects more object oriented nodes can be added: 
 +<code> 
 +A ==> F [RL(90) Cylinder(1,4) A] F +> MyNewNode(2.4); 
 +</code> 
 +  
 + 
 + 
 +===== SPO style =====
  
 SPO: Single pushout graph rewriting SPO: Single pushout graph rewriting
Line 16: Line 58:
 ====== Execution rule ====== ====== Execution rule ======
  
 +<code java>
 +
 +[ <pattern> ::> <java code> ]
 +
 +</code>
 +
 +e.g. 
 +
 +<code java>
 +
 +[ a:A ::> println( a ); ]
 +
 +</code>
tutorials/common_rewriting_rules.1714664233.txt.gz · Last modified: 2024/05/02 17:37 by TimOb