One of the strengths of Gel is its set of graph mathematics. Each graph is treated as a unit that can be added, subtracted, or otherwise combined with each other. Gel takes care of attribute conflict and merging.
For a more intuitive introduction, take a look at the visual summary of graph mathematics section below. To understand graph mathematics from a tutorial, see section two. For the rigorous theoreticians among you, see section three.
Outline
- A visual summary of graph mathematics
- A gel tutorial demonstrating graph mathematics
- A theoretical explaination of graph mathematics
##A visual summary of graph mathematics
The following figure provides a visual of graph mathematics on two starting graphs:
Run the following to create two graphs.
node(string id, int count) ntA;
link[float weight] ltA;
graph(ntA,ltA) A = {("a",1)[0.4]("b",2)[0.4]("d",4), a[0.8]("c",3)};
node(string id, string tag) ntB;
link[float weight] ltB;
graph(ntB,ltB) B={("b","g")[0.3]("d","m")[0.3]("e","c"), b[0.2]("c","g")[0.2]d};
Layout the graphs. Switch to the red and blue graph example
layout(A,"circle");
layout(B,"circle");
/* right click each panel to run force-directed and then right click to stop */
foreach node in A set _r=1,_text=name;
foreach link in A set _r=1,_text=weight;
foreach node in B set _b=1,_text=name;
foreach link in B set _b=1,_text=weight;
Try some graph mathematics.
/* This will save the results */
node(ntA,ntB) ntC;
link[ltA,ltB] ltC;
graph(ntC,ltC) result;
/* Double click result in Data Panel and show in Graph Canvas panel */
/* Then try the following graph mathematics
result=A+B;
result=A.+B;
result=A-B;
result=A.-B;
/* Intersection of two graphs */
result=A & B;
result=A .& B;
/* Complete graph */
result=A * A;
/* Inverse graph */
result=A*A-A;
A graph is defined as a set of nodes (
In practice, graphs have additional annotations called attributes. Currently, Gel provides four basic data primitives string, int, float and double as well as aggregate data types node (
Graph mathematics allow graph level operations. When two graphs are combined, node and link attributes must be combined in an intuitive manner. What happens when node and link attribute conflict occurs. The graph on the left (left operand) values take precedence. The exception to this is if the left operand has default values. Then the new data from the right will be incorporated into the new resulting graph.
Suppose you have two graphs
Part of the confusion of combining and subsetting multiple graphs is what to do with the nodes and links. Gel provides dotted and non-dotted mathematics to specify node-centric or link-centric operations.
In order to merge links and nodes in two graphs use the dotted addition operator.
However, if you are only concerned with nodes in
In a similar fashion, the subtraction operator has a dotted and non-dottted version.
The intersection of two graphs also have dotted and non-dotted versions.