groimp-platform:extents
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
groimp-platform:extents [2024/12/16 18:13] – gaetan | groimp-platform:extents [2025/01/14 15:29] (current) – gaetan | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Graph Extents ====== | ====== Graph Extents ====== | ||
- | A special feature of the graph management is the manipulation of [[https:// | + | A special feature of the graph management is the manipulation of [[https:// |
Line 41: | Line 41: | ||
===== Extent index ===== | ===== Extent index ===== | ||
- | An extent collects its nodes not by a single list, but by a number of (doubly linked) lists. Currently, eight lists are used, but this can easily be changed. This feature is used to partition the extents. | + | An extent collects its nodes not by a single list, but by a number of (doubly linked) lists. Currently, eight lists are used, but this can easily be changed. This feature is used to partition the extents. The eight lists are called the extent indexes. |
The extent indexes are defined from 0 to 7. By default most nodes added to the graph are added with the index 0. There are two exceptions (by default. You can manually set index of Node): | The extent indexes are defined from 0 to 7. By default most nodes added to the graph are added with the index 0. There are two exceptions (by default. You can manually set index of Node): | ||
- //meta objects//: Nodes of the meta graph. Added at index 7. | - //meta objects//: Nodes of the meta graph. Added at index 7. | ||
- | - //GUI inserted objects//: Nodes inserted from the GUI. Added at index 6. | + | - //GUI inserted objects//: Nodes inserted from the GUI. Added at index 6 (since GroIMP 2.1.5, they where added to index 7 before). |
The most common example of extent index is the // | The most common example of extent index is the // | ||
Line 54: | Line 54: | ||
It is possible to change the index visibility in a project with the method: '' | It is possible to change the index visibility in a project with the method: '' | ||
- | For instance, let's consider the following method in an empty project. Notice that we set the visible extent value to 1; | + | |
+ | === Example === | ||
+ | |||
+ | For instance, let's consider the following method in an empty project. Notice that we set the visible extent value to 1: | ||
<code java> | <code java> | ||
Line 93: | Line 96: | ||
===== Extent in XL queries ===== | ===== Extent in XL queries ===== | ||
+ | === Graph complexity === | ||
- | For instance | + | Extent are used in RGG for queries that involve Node types. E.g. the query '' |
- | <uml> | + | Such a query will **not** visit the graph. It will loop over the extents data. Thus, the complexity of the graph //might// not affect the query. |
- | @startuml | + | |
- | (Model.A) | + | Speed up queries by using more specific Node type: As the query loop over the extents content, '' |
- | (Model.A) as a2 | + | |
- | (Node) | + | |
- | (RGGRoot) --> a1 | + | === Indexes === |
- | (RGGRoot) --> a2 | + | |
- | @enduml | + | Additionally, |
- | </uml> | + | |
+ | === Examples === | ||
+ | |||
+ | The following code will create a chain of 8 cylinders, then stop growing. | ||
+ | |||
+ | <code java> | ||
+ | |||
+ | module A(int i) extends F { | ||
+ | {setExtentIndex(i);} | ||
+ | } | ||
+ | |||
+ | static int i = 0; | ||
+ | {de.grogra.rgg.model.Runtime.INSTANCE.currentGraph().setVisibleExtents(127); | ||
+ | |||
+ | public void init()[ Axiom ==> A(i); ] | ||
+ | |||
+ | public void run() [ a:A(x), (x==i) ==> a A(++i); ] | ||
+ | </code> | ||
- | GroIMP creates three extents, one for each type: Node, RGGRoot, and Model.A. | + | Indeed, the last F added as an extent index of 7, thus not visible (setVisibleExtents(127) means 0 to 6 visible). In this case, the query search |
- | Extents work as linked list. |
groimp-platform/extents.1734369195.txt.gz · Last modified: 2024/12/16 18:13 by gaetan