Skip to content

Instantly share code, notes, and snippets.

@kentfredric
Created August 10, 2010 12:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kentfredric/517220 to your computer and use it in GitHub Desktop.
Save kentfredric/517220 to your computer and use it in GitHub Desktop.
digraph a {
node [ shape=record, width=0.1, height=0.1 , fontname=Gentium, fontsize=20 ]
edge [ arrowsize = 0.5 ]
graph [ nodesep=0.1 , ranksep = 0.1]
00 [ label="<n> 00 | <f1> Root" ]
04 [ label="<n> 04 | <f1> Trunk" ]
00:n -> 01 -> 02 -> 03 -> 04:n
}
digraph a {
node [ shape=record, width=0.1, height=0.1 , fontname=Gentium, fontsize=20, peripheries=3]
edge [ arrowsize = 0.5 ]
graph [ nodesep=0.1 , ranksep = 0.1]
00 [ label="<n> 00 | <f1> Root" ]
04 [ label="<n> 04 | <f1> Diversion Point" ]
08 [ label="<n> 08 | <f1> Trunk" ]
x05 [ label="<n> x05 | <f1> Topic Branch X"]
00:n -> 01 -> 02 -> 03 -> 04:n
04:n -> 05 -> 06 -> 07 -> 08:n
04:n -> x01 -> x02 -> x03 -> x04 -> x05:n
}
digraph a {
node [ shape=record, width=0.1, height=0.1 , fontname=Gentium, fontsize=20, peripheries=3]
edge [ arrowsize = 0.5 ]
graph [ nodesep=0.1 , ranksep = 0.1]
00 [ label="<n> 00 | <f1> Root" ]
04 [ label="<n> 04 | <f1> Diversion Point" ]
08 [ label="<n> 08 | <f1> Trunk" ]
x05 [ label="<n> x05 | <f1> Topic Branch X"]
09 [ label="<n> 09 | <r> rebase of x01" ]
10 [ label="<n> 10 | <r> rebase of x02" ]
11 [ label="<n> 11 | <r> rebase of x03" ]
12 [ label="<n> 12 | <r> rebase of x04" ]
13 [ label="<n> 13 | <r> rebase of x05 | <f1> Rebase of Topic Branch X" ]
00:n -> 01 -> 02 -> 03 -> 04:n
04:n -> 05 -> 06 -> 07 -> 08:n
04:n -> x01 -> x02 -> x03 -> x04 -> x05:n [ weight = 0.5 ]
08:n -> 09:n -> 10:n -> 11:n -> 12:n -> 13:n [ weight = 2 ]
09:r -> 10:r -> 11:r -> 12:r -> 13:r [ weight = 0.01 ]
x01 -> 09:r [ weight = 0.1 ]
x02 -> 10:r [ weight = 0.1 ]
x03 -> 11:r [ weight = 0.1 ]
x04 -> 12:r [ weight = 0.1 ]
x05:n -> 13:r [ weight = 0.1 ]
x05:f1 -> 13:f1 [ weight = 0.1 ]
}
digraph a {
node [ shape=record, width=0.1, height=0.1 , fontname=Gentium, fontsize=20, peripheries=3]
edge [ arrowsize = 0.5 ]
graph [ nodesep=0.1 , ranksep = 0.1]
00 [ label="<n> 00 | <f1> Root" ]
08 [ label="<n> 08 | <f1> Trunk" ]
09 [ label="<n> 09 | <r> rebase of x01" ]
10 [ label="<n> 10 | <r> rebase of x02" ]
11 [ label="<n> 11 | <r> rebase of x03" ]
12 [ label="<n> 12 | <r> rebase of x04" ]
13 [ label="<n> 13 | <r> rebase of x05 | <f1> Topic Branch X" ]
00:n -> 01 -> 02 -> 03 -> 04 -> 05 -> 06 -> 07 -> 08:n
08:n -> 09:n -> 10:n -> 11:n -> 12:n -> 13:n [ weight = 2 ]
}
digraph a {
node [ shape=record, width=0.1, height=0.1 , fontname=Gentium, fontsize=20, peripheries=3]
edge [ arrowsize = 0.5 ]
graph [ nodesep=0.1 , ranksep = 0.1]
00 [ label="<n> 00 | <f1> Root" ]
08 [ label="<n> 08" ]
09 [ label="<n> 09 | <r> rebase of x01" ]
10 [ label="<n> 10 | <r> rebase of x02" ]
11 [ label="<n> 11 | <r> rebase of x03" ]
12 [ label="<n> 12 | <r> rebase of x04" ]
13 [ label="<n> 13 | <r> rebase of x05 | <f1> Trunk" ]
00:n -> 01 -> 02 -> 03 -> 04 -> 05 -> 06 -> 07 -> 08:n
08:n -> 09:n -> 10:n -> 11:n -> 12:n -> 13:n [ weight = 2 ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment