ruby-graphviz_c 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gemrc +0 -0
- data/.gitignore +9 -0
- data/.travis.yml +7 -0
- data/AUTHORS.rdoc +33 -0
- data/CHANGELOG.rdoc +287 -0
- data/COPYING.rdoc +133 -0
- data/Gemfile +4 -0
- data/README.rdoc +206 -0
- data/Rakefile +71 -0
- data/bin/dot2ruby +91 -0
- data/bin/gem2gv +165 -0
- data/bin/git2gv +167 -0
- data/bin/ruby2gv +234 -0
- data/bin/xml2gv +96 -0
- data/examples/dot/JSP.dot +52 -0
- data/examples/dot/balanced.dot +36 -0
- data/examples/dot/cluster.dot +30 -0
- data/examples/dot/dotgraph.dot +28 -0
- data/examples/dot/fsm.dot +20 -0
- data/examples/dot/genetic.dot +118 -0
- data/examples/dot/hello.dot +1 -0
- data/examples/dot/hello_test.rb +33 -0
- data/examples/dot/lion_share.dot +103 -0
- data/examples/dot/prof.dot +150 -0
- data/examples/dot/psg.dot +28 -0
- data/examples/dot/rank.dot +6 -0
- data/examples/dot/sdh.dot +284 -0
- data/examples/dot/siblings.dot +492 -0
- data/examples/dot/so-sample001.gv +30 -0
- data/examples/dot/so-sample002.gv +33 -0
- data/examples/dot/so-sample003.gv +45 -0
- data/examples/dot/test.dot +17 -0
- data/examples/dot/test_parse.rb +13 -0
- data/examples/dot/this_crach_with_dot_2.20.dot +24 -0
- data/examples/dot/unix.dot +104 -0
- data/examples/graphml/attributes.ext.graphml +12 -0
- data/examples/graphml/attributes.graphml +40 -0
- data/examples/graphml/cluster.graphml +75 -0
- data/examples/graphml/failed_graph.graphml +461 -0
- data/examples/graphml/hyper.graphml +29 -0
- data/examples/graphml/nested.graphml +54 -0
- data/examples/graphml/port.graphml +32 -0
- data/examples/graphml/simple.graphml +30 -0
- data/examples/hello.png +0 -0
- data/examples/rgv/rgv.ps +125 -0
- data/examples/rgv/test_rgv.rb +12 -0
- data/examples/sample01.rb +32 -0
- data/examples/sample02.rb +42 -0
- data/examples/sample03.rb +31 -0
- data/examples/sample04.rb +22 -0
- data/examples/sample05.rb +32 -0
- data/examples/sample06.rb +46 -0
- data/examples/sample07.rb +23 -0
- data/examples/sample08.rb +34 -0
- data/examples/sample09.rb +50 -0
- data/examples/sample10.rb +50 -0
- data/examples/sample11.rb +42 -0
- data/examples/sample12.rb +55 -0
- data/examples/sample13.rb +48 -0
- data/examples/sample14.rb +44 -0
- data/examples/sample15.rb +25 -0
- data/examples/sample16.rb +8 -0
- data/examples/sample17.rb +92 -0
- data/examples/sample18.rb +24 -0
- data/examples/sample19.rb +59 -0
- data/examples/sample20.rb +47 -0
- data/examples/sample21.rb +12 -0
- data/examples/sample22.rb +10 -0
- data/examples/sample23.rb +11 -0
- data/examples/sample24.rb +11 -0
- data/examples/sample25.rb +11 -0
- data/examples/sample26.rb +8 -0
- data/examples/sample27.rb +8 -0
- data/examples/sample28.rb +12 -0
- data/examples/sample29.rb +8 -0
- data/examples/sample30.rb +12 -0
- data/examples/sample31.rb +10 -0
- data/examples/sample32.rb +14 -0
- data/examples/sample33.rb +43 -0
- data/examples/sample34.rb +29 -0
- data/examples/sample35.rb +43 -0
- data/examples/sample36.rb +35 -0
- data/examples/sample37.rb +87 -0
- data/examples/sample38.rb +12 -0
- data/examples/sample39.rb +11 -0
- data/examples/sample40.rb +17 -0
- data/examples/sample41.rb +8 -0
- data/examples/sample42.rb +35 -0
- data/examples/sample43.rb +26 -0
- data/examples/sample44.rb +97 -0
- data/examples/sample45.rb +24 -0
- data/examples/sample46.rb +43 -0
- data/examples/sample47.rb +7 -0
- data/examples/sample48.rb +62 -0
- data/examples/sample49.rb +10 -0
- data/examples/sample50.rb +215 -0
- data/examples/sample51.rb +37 -0
- data/examples/sample52.rb +62 -0
- data/examples/sample53.rb +26 -0
- data/examples/sample54.rb +26 -0
- data/examples/sample55.rb +9 -0
- data/examples/sample56.rb +10 -0
- data/examples/sample57.rb +8 -0
- data/examples/sample58.rb +33 -0
- data/examples/sample59.rb +14 -0
- data/examples/sample60.rb +12 -0
- data/examples/sample61.rb +12 -0
- data/examples/sample62.rb +24 -0
- data/examples/sample63.rb +32 -0
- data/examples/sample64.rb +31 -0
- data/examples/sample65.rb +9 -0
- data/examples/sample66.rb +4 -0
- data/examples/sample67.rb +10 -0
- data/examples/sample68.rb +27 -0
- data/examples/sample69.rb +23 -0
- data/examples/sample70.rb +9 -0
- data/examples/sample99.rb +70 -0
- data/examples/sdlshapes/README +2 -0
- data/examples/sdlshapes/sdl.ps +655 -0
- data/examples/sdlshapes/sdlshapes.dot +78 -0
- data/examples/test.xml +26 -0
- data/examples/theory/pert.rb +47 -0
- data/examples/theory/tests.rb +87 -0
- data/lib/ext/gvpr/dot2ruby.g +185 -0
- data/lib/graphviz/attrs.rb +73 -0
- data/lib/graphviz/constants.rb +294 -0
- data/lib/graphviz/core_ext.rb +64 -0
- data/lib/graphviz/dot2ruby.rb +59 -0
- data/lib/graphviz/dot_script.rb +109 -0
- data/lib/graphviz/dsl.rb +67 -0
- data/lib/graphviz/edge.rb +197 -0
- data/lib/graphviz/elements.rb +39 -0
- data/lib/graphviz/ext.rb +17 -0
- data/lib/graphviz/family_tree/couple.rb +63 -0
- data/lib/graphviz/family_tree/generation.rb +39 -0
- data/lib/graphviz/family_tree/person.rb +120 -0
- data/lib/graphviz/family_tree/sibling.rb +13 -0
- data/lib/graphviz/family_tree.rb +118 -0
- data/lib/graphviz/graphml.rb +268 -0
- data/lib/graphviz/math/matrix.rb +221 -0
- data/lib/graphviz/node.rb +160 -0
- data/lib/graphviz/nothugly/nothugly.xsl +321 -0
- data/lib/graphviz/nothugly.rb +63 -0
- data/lib/graphviz/theory.rb +321 -0
- data/lib/graphviz/types/arrow_type.rb +32 -0
- data/lib/graphviz/types/color.rb +58 -0
- data/lib/graphviz/types/color_list.rb +24 -0
- data/lib/graphviz/types/esc_string.rb +20 -0
- data/lib/graphviz/types/gv_bool.rb +49 -0
- data/lib/graphviz/types/gv_double.rb +32 -0
- data/lib/graphviz/types/html_string.rb +18 -0
- data/lib/graphviz/types/lbl_string.rb +22 -0
- data/lib/graphviz/types/rect.rb +35 -0
- data/lib/graphviz/types/spline_type.rb +77 -0
- data/lib/graphviz/types.rb +22 -0
- data/lib/graphviz/utils/colors.rb +1018 -0
- data/lib/graphviz/utils.rb +70 -0
- data/lib/graphviz/xml.rb +119 -0
- data/lib/graphviz.rb +967 -0
- data/lib/ruby-graphviz.rb +1 -0
- data/man/dot2ruby.1 +66 -0
- data/man/dot2ruby.1.ronn +55 -0
- data/man/gem2gv.1 +60 -0
- data/man/gem2gv.1.ronn +47 -0
- data/man/git2gv.1 +48 -0
- data/man/git2gv.1.ronn +40 -0
- data/man/ruby2gv.1 +60 -0
- data/man/ruby2gv.1.ronn +47 -0
- data/man/xml2gv.1 +48 -0
- data/man/xml2gv.1.ronn +39 -0
- data/ruby-graphviz.gemspec +47 -0
- data/setup.rb +1585 -0
- data/test/helper.rb +13 -0
- data/test/support.rb +95 -0
- data/test/test_dot_script.rb +47 -0
- data/test/test_examples.rb +151 -0
- data/test/test_graph.rb +115 -0
- data/test/test_search.rb +29 -0
- data/test/test_subgraph.rb +27 -0
- data/test/test_theory.rb +98 -0
- data/test/test_types.rb +65 -0
- data/test/test_utils_colors.rb +52 -0
- metadata +301 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
digraph G {
|
|
2
|
+
layout="neato"
|
|
3
|
+
// scale things down for example
|
|
4
|
+
size="5,5"
|
|
5
|
+
rankdir=TD
|
|
6
|
+
ranksep=1
|
|
7
|
+
nodesep=1
|
|
8
|
+
|
|
9
|
+
node [shape=box]
|
|
10
|
+
|
|
11
|
+
top[pos="5,10!", width=5, height=2]
|
|
12
|
+
|
|
13
|
+
left1[pos="3.5,7!", width=2, height=2]
|
|
14
|
+
left2[pos="3.5,4!", width=2, height=2]
|
|
15
|
+
|
|
16
|
+
right[pos="6.5,5.5!", width=2, height=5]
|
|
17
|
+
|
|
18
|
+
bottom[pos="5,1!", width=5, height=2]
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
top->left1
|
|
22
|
+
top->right
|
|
23
|
+
|
|
24
|
+
left1->left2
|
|
25
|
+
left1->right
|
|
26
|
+
left2->right
|
|
27
|
+
|
|
28
|
+
left2->bottom
|
|
29
|
+
right->bottom
|
|
30
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
|
|
2
|
+
//{:category1 =>
|
|
3
|
+
// {:subcategory1 =>
|
|
4
|
+
// [
|
|
5
|
+
// {:article => "some article", :date => "2010-04-04"},
|
|
6
|
+
// ...
|
|
7
|
+
// ],
|
|
8
|
+
// :subc2 => [...]
|
|
9
|
+
// },
|
|
10
|
+
// :category2 => {...},
|
|
11
|
+
// ...
|
|
12
|
+
//}
|
|
13
|
+
|
|
14
|
+
graph G {
|
|
15
|
+
rankdir=LR
|
|
16
|
+
category1
|
|
17
|
+
|
|
18
|
+
subgraph clusterC {
|
|
19
|
+
node[shape="box"]
|
|
20
|
+
subcategory1
|
|
21
|
+
subc2
|
|
22
|
+
|
|
23
|
+
subgraph clusterS {
|
|
24
|
+
article -- "somme article"
|
|
25
|
+
date -- "2010-04-04"
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
subcategory1 -- clusterS
|
|
29
|
+
subc2 -- "..."
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
category1 -- clusterC
|
|
33
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
//{:category1 =>
|
|
3
|
+
// {:subcategory1 =>
|
|
4
|
+
// [
|
|
5
|
+
// {:article => "some article", :date => "2010-04-04"},
|
|
6
|
+
// ...
|
|
7
|
+
// ],
|
|
8
|
+
// :subc2 => [...]
|
|
9
|
+
// },
|
|
10
|
+
// :category2 => {...},
|
|
11
|
+
// ...
|
|
12
|
+
//}
|
|
13
|
+
|
|
14
|
+
graph G {
|
|
15
|
+
layout="fdp"
|
|
16
|
+
|
|
17
|
+
category1[label=":category1", shape="box"]
|
|
18
|
+
|
|
19
|
+
subgraph cluster_category1 {
|
|
20
|
+
subcategory1[label=":subcategory1", shape="box"]
|
|
21
|
+
subc2[label=":subc2", shape="box"]
|
|
22
|
+
|
|
23
|
+
subgraph cluster_subcategory1 {
|
|
24
|
+
subgraph cluster_subcategory1_Array0 {
|
|
25
|
+
article0[label=":article", shape="box"]
|
|
26
|
+
date0[label=":date", shape="box"]
|
|
27
|
+
|
|
28
|
+
article0 -- "somme article"
|
|
29
|
+
date0 -- "2010-04-04"
|
|
30
|
+
}
|
|
31
|
+
subgraph cluster_subcategory1_Array1 {
|
|
32
|
+
article1[label=":article", shape="box"]
|
|
33
|
+
date1[label=":date", shape="box"]
|
|
34
|
+
|
|
35
|
+
article1 -- "an other article"
|
|
36
|
+
date1 -- "2010-09-09"
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
subcategory1 -- cluster_subcategory1
|
|
41
|
+
subc2 -- "..."
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
category1 -- cluster_category1
|
|
45
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
digraph G {
|
|
2
|
+
fontsize=12;
|
|
3
|
+
node [style=filled ,fontsize=10]; Hello;
|
|
4
|
+
edge[style=dotted];
|
|
5
|
+
graph [ bgcolor = "#ABCDEF"];
|
|
6
|
+
|
|
7
|
+
monde [color=blue, style= filled];
|
|
8
|
+
node[color=white ] ;
|
|
9
|
+
Hello ->World [color=red, style = filled];
|
|
10
|
+
Bonjour-> monde -> Chose;
|
|
11
|
+
Coucou -> "Les Gens" [color=blue];
|
|
12
|
+
subgraph X {
|
|
13
|
+
bgcolor = white;
|
|
14
|
+
label="Sub Graph";
|
|
15
|
+
toto -> titi;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
graph A
|
|
2
|
+
{
|
|
3
|
+
graph [nodesep="0.10", size="7,5", bb="0,0,737,832"];
|
|
4
|
+
node [fontsize="12.00", shape=circle, height = 0.4 width = 0.4 fixedsize="true"];
|
|
5
|
+
779 -- 780 [label = 6.5 style = "bold" ];
|
|
6
|
+
522 -- 523 [label = 6.2 style = "bold" ];
|
|
7
|
+
527 -- 528 [label = 6.0 style = "bold" ];
|
|
8
|
+
752 -- 753 [label = 5.1 style = "solid"];
|
|
9
|
+
576 -- 577 [label = 5.1 style = "solid"];
|
|
10
|
+
578 -- 579 [label = 4.8 style = "dashed"];
|
|
11
|
+
757 -- 758 [label = 4.6 style = "dashed"];
|
|
12
|
+
696 -- 697 [label = 4.5 style = "dashed"];
|
|
13
|
+
542 -- 543 [label = 4.4 style = "dashed"];
|
|
14
|
+
723 -- 724 [label = 4.4 style = "dashed"];
|
|
15
|
+
495 -- 496 [label = 4.4 style = "dashed"];
|
|
16
|
+
459 -- 460 [label = 4.3 style = "dashed"];
|
|
17
|
+
784 -- 785 [label = 4.2 style = "dashed"];
|
|
18
|
+
518 -- 519 [label = 4.2 style = "dashed"];
|
|
19
|
+
894 -- 895 [label = 4.1 style = "dashed"];
|
|
20
|
+
435 -- 436 [label = 4.1 style = "dashed"];
|
|
21
|
+
322 -- 323 [label = 4.1 style = "dashed"];
|
|
22
|
+
545 -- 546 [label = 4.1 style = "dashed"];
|
|
23
|
+
513 -- 514 [label = 4.0 style = "dashed"];
|
|
24
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
digraph "unix" {
|
|
2
|
+
graph [ fontname = "Helvetica-Oblique",
|
|
3
|
+
fontsize = 36,
|
|
4
|
+
label = "\n\n\n\nObject Oriented Graphs\nStephen North, 3/19/93",
|
|
5
|
+
size = "6,6" ];
|
|
6
|
+
node [ shape = polygon,
|
|
7
|
+
sides = 4,
|
|
8
|
+
distortion = "0.0",
|
|
9
|
+
orientation = "0.0",
|
|
10
|
+
skew = "0.0",
|
|
11
|
+
color = white,
|
|
12
|
+
style = filled,
|
|
13
|
+
fontname = "Helvetica-Outline" ];
|
|
14
|
+
"5th Edition" [sides=9, distortion="0.936354", orientation=28, skew="-0.126818", color=salmon2];
|
|
15
|
+
"6th Edition" [sides=5, distortion="0.238792", orientation=11, skew="0.995935", color=deepskyblue];
|
|
16
|
+
"PWB 1.0" [sides=8, distortion="0.019636", orientation=79, skew="-0.440424", color=goldenrod2];
|
|
17
|
+
LSX [sides=9, distortion="-0.698271", orientation=22, skew="-0.195492", color=burlywood2];
|
|
18
|
+
"1 BSD" [sides=7, distortion="0.265084", orientation=26, skew="0.403659", color=gold1];
|
|
19
|
+
"Mini Unix" [distortion="0.039386", orientation=2, skew="-0.461120", color=greenyellow];
|
|
20
|
+
Wollongong [sides=5, distortion="0.228564", orientation=63, skew="-0.062846", color=darkseagreen];
|
|
21
|
+
Interdata [distortion="0.624013", orientation=56, skew="0.101396", color=dodgerblue1];
|
|
22
|
+
"Unix/TS 3.0" [sides=8, distortion="0.731383", orientation=43, skew="-0.824612", color=thistle2];
|
|
23
|
+
"PWB 2.0" [sides=6, distortion="0.592100", orientation=34, skew="-0.719269", color=darkolivegreen3];
|
|
24
|
+
"7th Edition" [sides=10, distortion="0.298417", orientation=65, skew="0.310367", color=chocolate];
|
|
25
|
+
"8th Edition" [distortion="-0.997093", orientation=50, skew="-0.061117", color=turquoise3];
|
|
26
|
+
"32V" [sides=7, distortion="0.878516", orientation=19, skew="0.592905", color=steelblue3];
|
|
27
|
+
V7M [sides=10, distortion="-0.960249", orientation=32, skew="0.460424", color=navy];
|
|
28
|
+
"Ultrix-11" [sides=10, distortion="-0.633186", orientation=10, skew="0.333125", color=darkseagreen4];
|
|
29
|
+
Xenix [sides=8, distortion="-0.337997", orientation=52, skew="-0.760726", color=coral];
|
|
30
|
+
"UniPlus+" [sides=7, distortion="0.788483", orientation=39, skew="-0.526284", color=darkolivegreen3];
|
|
31
|
+
"9th Edition" [sides=7, distortion="0.138690", orientation=55, skew="0.554049", color=coral3];
|
|
32
|
+
"2 BSD" [sides=7, distortion="-0.010661", orientation=84, skew="0.179249", color=blanchedalmond];
|
|
33
|
+
"2.8 BSD" [distortion="-0.239422", orientation=44, skew="0.053841", color=lightskyblue1];
|
|
34
|
+
"2.9 BSD" [distortion="-0.843381", orientation=70, skew="-0.601395", color=aquamarine2];
|
|
35
|
+
"3 BSD" [sides=10, distortion="0.251820", orientation=18, skew="-0.530618", color=lemonchiffon];
|
|
36
|
+
"4 BSD" [sides=5, distortion="-0.772300", orientation=24, skew="-0.028475", color=darkorange1];
|
|
37
|
+
"4.1 BSD" [distortion="-0.226170", orientation=38, skew="0.504053", color=lightyellow1];
|
|
38
|
+
"4.2 BSD" [sides=10, distortion="-0.807349", orientation=50, skew="-0.908842", color=darkorchid4];
|
|
39
|
+
"4.3 BSD" [sides=10, distortion="-0.030619", orientation=76, skew="0.985021", color=lemonchiffon2];
|
|
40
|
+
"Ultrix-32" [distortion="-0.644209", orientation=21, skew="0.307836", color=goldenrod3];
|
|
41
|
+
"PWB 1.2" [sides=7, distortion="0.640971", orientation=84, skew="-0.768455", color=cyan];
|
|
42
|
+
"USG 1.0" [distortion="0.758942", orientation=42, skew="0.039886", color=blue];
|
|
43
|
+
"CB Unix 1" [sides=9, distortion="-0.348692", orientation=42, skew="0.767058", color=firebrick];
|
|
44
|
+
"USG 2.0" [distortion="0.748625", orientation=74, skew="-0.647656", color=chartreuse4];
|
|
45
|
+
"CB Unix 2" [sides=10, distortion="0.851818", orientation=32, skew="-0.020120", color=greenyellow];
|
|
46
|
+
"CB Unix 3" [sides=10, distortion="0.992237", orientation=29, skew="0.256102", color=bisque4];
|
|
47
|
+
"Unix/TS++" [sides=6, distortion="0.545461", orientation=16, skew="0.313589", color=mistyrose2];
|
|
48
|
+
"PDP-11 Sys V" [sides=9, distortion="-0.267769", orientation=40, skew="0.271226", color=cadetblue1];
|
|
49
|
+
"USG 3.0" [distortion="-0.848455", orientation=44, skew="0.267152", color=bisque2];
|
|
50
|
+
"Unix/TS 1.0" [distortion="0.305594", orientation=75, skew="0.070516", color=orangered];
|
|
51
|
+
"TS 4.0" [sides=10, distortion="-0.641701", orientation=50, skew="-0.952502", color=crimson];
|
|
52
|
+
"System V.0" [sides=9, distortion="0.021556", orientation=26, skew="-0.729938", color=darkorange1];
|
|
53
|
+
"System V.2" [sides=6, distortion="0.985153", orientation=33, skew="-0.399752", color=darkolivegreen4];
|
|
54
|
+
"System V.3" [sides=7, distortion="-0.687574", orientation=58, skew="-0.180116", color=lightsteelblue1];
|
|
55
|
+
"5th Edition" -> "6th Edition";
|
|
56
|
+
"5th Edition" -> "PWB 1.0";
|
|
57
|
+
"6th Edition" -> LSX;
|
|
58
|
+
"6th Edition" -> "1 BSD";
|
|
59
|
+
"6th Edition" -> "Mini Unix";
|
|
60
|
+
"6th Edition" -> Wollongong;
|
|
61
|
+
"6th Edition" -> Interdata;
|
|
62
|
+
Interdata -> "Unix/TS 3.0";
|
|
63
|
+
Interdata -> "PWB 2.0";
|
|
64
|
+
Interdata -> "7th Edition";
|
|
65
|
+
"7th Edition" -> "8th Edition";
|
|
66
|
+
"7th Edition" -> "32V";
|
|
67
|
+
"7th Edition" -> V7M;
|
|
68
|
+
"7th Edition" -> "Ultrix-11";
|
|
69
|
+
"7th Edition" -> Xenix;
|
|
70
|
+
"7th Edition" -> "UniPlus+";
|
|
71
|
+
V7M -> "Ultrix-11";
|
|
72
|
+
"8th Edition" -> "9th Edition";
|
|
73
|
+
"1 BSD" -> "2 BSD";
|
|
74
|
+
"2 BSD" -> "2.8 BSD";
|
|
75
|
+
"2.8 BSD" -> "Ultrix-11";
|
|
76
|
+
"2.8 BSD" -> "2.9 BSD";
|
|
77
|
+
"32V" -> "3 BSD";
|
|
78
|
+
"3 BSD" -> "4 BSD";
|
|
79
|
+
"4 BSD" -> "4.1 BSD";
|
|
80
|
+
"4.1 BSD" -> "4.2 BSD";
|
|
81
|
+
"4.1 BSD" -> "2.8 BSD";
|
|
82
|
+
"4.1 BSD" -> "8th Edition";
|
|
83
|
+
"4.2 BSD" -> "4.3 BSD";
|
|
84
|
+
"4.2 BSD" -> "Ultrix-32";
|
|
85
|
+
"PWB 1.0" -> "PWB 1.2";
|
|
86
|
+
"PWB 1.0" -> "USG 1.0";
|
|
87
|
+
"PWB 1.2" -> "PWB 2.0";
|
|
88
|
+
"USG 1.0" -> "CB Unix 1";
|
|
89
|
+
"USG 1.0" -> "USG 2.0";
|
|
90
|
+
"CB Unix 1" -> "CB Unix 2";
|
|
91
|
+
"CB Unix 2" -> "CB Unix 3";
|
|
92
|
+
"CB Unix 3" -> "Unix/TS++";
|
|
93
|
+
"CB Unix 3" -> "PDP-11 Sys V";
|
|
94
|
+
"USG 2.0" -> "USG 3.0";
|
|
95
|
+
"USG 3.0" -> "Unix/TS 3.0";
|
|
96
|
+
"PWB 2.0" -> "Unix/TS 3.0";
|
|
97
|
+
"Unix/TS 1.0" -> "Unix/TS 3.0";
|
|
98
|
+
"Unix/TS 3.0" -> "TS 4.0";
|
|
99
|
+
"Unix/TS++" -> "TS 4.0";
|
|
100
|
+
"CB Unix 3" -> "TS 4.0";
|
|
101
|
+
"TS 4.0" -> "System V.0";
|
|
102
|
+
"System V.0" -> "System V.2";
|
|
103
|
+
"System V.2" -> "System V.3";
|
|
104
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<graphml xmlns="http://graphml.graphdrawing.org/xmlns"
|
|
3
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
4
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
5
|
+
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns
|
|
6
|
+
graphml+xlink.xsd">
|
|
7
|
+
<graph edgedefault="directed">
|
|
8
|
+
<node id="n0" xlink:href="http://graphml.graphdrawing.org"/>
|
|
9
|
+
<node id="n1" />
|
|
10
|
+
<edge source="n0" target="n1"/>
|
|
11
|
+
</graph>
|
|
12
|
+
</graphml>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!-- This file was written by the JAVA GraphML Library.-->
|
|
3
|
+
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
4
|
+
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
|
|
5
|
+
<key id="d0" for="node" attr.name="color" attr.type="string">
|
|
6
|
+
<default>yellow</default>
|
|
7
|
+
</key>
|
|
8
|
+
<key id="d1" for="edge" attr.name="weight" attr.type="double"/>
|
|
9
|
+
<graph id="G" edgedefault="undirected">
|
|
10
|
+
<node id="n0">
|
|
11
|
+
<data key="d0">green</data>
|
|
12
|
+
</node>
|
|
13
|
+
<node id="n1"/>
|
|
14
|
+
<node id="n2">
|
|
15
|
+
<data key="d0">blue</data>
|
|
16
|
+
</node>
|
|
17
|
+
<node id="n3">
|
|
18
|
+
<data key="d0">red</data>
|
|
19
|
+
</node>
|
|
20
|
+
<node id="n4"/>
|
|
21
|
+
<node id="n5">
|
|
22
|
+
<data key="d0">turquoise</data>
|
|
23
|
+
</node>
|
|
24
|
+
<edge id="e0" source="n0" target="n2">
|
|
25
|
+
<data key="d1">1.0</data>
|
|
26
|
+
</edge>
|
|
27
|
+
<edge id="e1" source="n0" target="n1">
|
|
28
|
+
<data key="d1">1.0</data>
|
|
29
|
+
</edge>
|
|
30
|
+
<edge id="e2" source="n1" target="n3">
|
|
31
|
+
<data key="d1">2.0</data>
|
|
32
|
+
</edge>
|
|
33
|
+
<edge id="e3" source="n3" target="n2"/>
|
|
34
|
+
<edge id="e4" source="n2" target="n4"/>
|
|
35
|
+
<edge id="e5" source="n3" target="n5"/>
|
|
36
|
+
<edge id="e6" source="n5" target="n4">
|
|
37
|
+
<data key="d1">1.1</data>
|
|
38
|
+
</edge>
|
|
39
|
+
</graph>
|
|
40
|
+
</graphml>
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!-- This file was written by the JAVA GraphML Library.-->
|
|
3
|
+
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
4
|
+
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
|
|
5
|
+
<key id="color" for="all" attr.name="color" attr.type="string"/>
|
|
6
|
+
<key id="style" for="all" attr.name="style" attr.type="string"/>
|
|
7
|
+
<key id="label" for="all" attr.name="label" attr.type="string"/>
|
|
8
|
+
<key id="shape" for="node" attr.name="shape" attr.type="string"/>
|
|
9
|
+
<graph id="G" edgedefault="directed">
|
|
10
|
+
|
|
11
|
+
<node id="cluster_0:">
|
|
12
|
+
<graph id="cluster_0">
|
|
13
|
+
<data key="color">lightgrey</data>
|
|
14
|
+
<data key="style">filled</data>
|
|
15
|
+
<data key="label">process #1</data>
|
|
16
|
+
<node id="a0">
|
|
17
|
+
<data key="style">filled</data>
|
|
18
|
+
<data key="color">white</data>
|
|
19
|
+
</node>
|
|
20
|
+
<node id="a1">
|
|
21
|
+
<data key="style">filled</data>
|
|
22
|
+
<data key="color">white</data>
|
|
23
|
+
</node>
|
|
24
|
+
<node id="a2">
|
|
25
|
+
<data key="style">filled</data>
|
|
26
|
+
<data key="color">white</data>
|
|
27
|
+
</node>
|
|
28
|
+
<node id="a3">
|
|
29
|
+
<data key="style">filled</data>
|
|
30
|
+
<data key="color">white</data>
|
|
31
|
+
</node>
|
|
32
|
+
<edge id="e0" source="a0" target="a1"/>
|
|
33
|
+
<edge id="e1" source="a1" target="a2"/>
|
|
34
|
+
<edge id="e2" source="a2" target="a3"/>
|
|
35
|
+
</graph>
|
|
36
|
+
</node>
|
|
37
|
+
|
|
38
|
+
<node id="cluster_1:">
|
|
39
|
+
<graph id="cluster_1">
|
|
40
|
+
<data key="color">blue</data>
|
|
41
|
+
<data key="label">process #2</data>
|
|
42
|
+
<node id="b0">
|
|
43
|
+
<data key="style">filled</data>
|
|
44
|
+
</node>
|
|
45
|
+
<node id="b1">
|
|
46
|
+
<data key="style">filled</data>
|
|
47
|
+
</node>
|
|
48
|
+
<node id="b2">
|
|
49
|
+
<data key="style">filled</data>
|
|
50
|
+
</node>
|
|
51
|
+
<node id="b3">
|
|
52
|
+
<data key="style">filled</data>
|
|
53
|
+
</node>
|
|
54
|
+
<edge id="e3" source="b0" target="b1"/>
|
|
55
|
+
<edge id="e4" source="b1" target="b2"/>
|
|
56
|
+
<edge id="e5" source="b2" target="b3"/>
|
|
57
|
+
</graph>
|
|
58
|
+
</node>
|
|
59
|
+
|
|
60
|
+
<node id="start">
|
|
61
|
+
<data key="shape">Mdiamond</data>
|
|
62
|
+
</node>
|
|
63
|
+
<node id="end">
|
|
64
|
+
<data key="shape">Mdiamond</data>
|
|
65
|
+
</node>
|
|
66
|
+
|
|
67
|
+
<edge id="e6" source="start" target="a0"/>
|
|
68
|
+
<edge id="e7" source="start" target="b0"/>
|
|
69
|
+
<edge id="e8" source="a1" target="b3"/>
|
|
70
|
+
<edge id="e9" source="b2" target="a3"/>
|
|
71
|
+
<edge id="eA" source="a3" target="a0"/>
|
|
72
|
+
<edge id="eB" source="a3" target="end"/>
|
|
73
|
+
<edge id="eC" source="b3" target="end"/>
|
|
74
|
+
</graph>
|
|
75
|
+
</graphml>
|
|
@@ -0,0 +1,461 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
|
|
3
|
+
<!--Created by yFiles for Java 2.9-->
|
|
4
|
+
<key for="graphml" id="d0" yfiles.type="resources"/>
|
|
5
|
+
<key for="port" id="d1" yfiles.type="portgraphics"/>
|
|
6
|
+
<key for="port" id="d2" yfiles.type="portgeometry"/>
|
|
7
|
+
<key for="port" id="d3" yfiles.type="portuserdata"/>
|
|
8
|
+
<key attr.name="url" attr.type="string" for="node" id="d4"/>
|
|
9
|
+
<key attr.name="description" attr.type="string" for="node" id="d5"/>
|
|
10
|
+
<key for="node" id="d6" yfiles.type="nodegraphics"/>
|
|
11
|
+
<key attr.name="Description" attr.type="string" for="graph" id="d7"/>
|
|
12
|
+
<key attr.name="url" attr.type="string" for="edge" id="d8"/>
|
|
13
|
+
<key attr.name="description" attr.type="string" for="edge" id="d9"/>
|
|
14
|
+
<key for="edge" id="d10" yfiles.type="edgegraphics"/>
|
|
15
|
+
<graph edgedefault="directed" id="G">
|
|
16
|
+
<data key="d7"/>
|
|
17
|
+
<node id="n0">
|
|
18
|
+
<data key="d6">
|
|
19
|
+
<y:ShapeNode>
|
|
20
|
+
<y:Geometry height="30.0" width="30.0" x="243.0212626845818" y="60.0"/>
|
|
21
|
+
<y:Fill color="#FFCC00" transparent="false"/>
|
|
22
|
+
<y:BorderStyle color="#000000" type="line" width="1.0"/>
|
|
23
|
+
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" textColor="#000000" visible="true" width="11.869140625" x="9.0654296875" y="6.015625">K<y:LabelModel>
|
|
24
|
+
<y:SmartNodeLabelModel distance="4.0"/>
|
|
25
|
+
</y:LabelModel>
|
|
26
|
+
<y:ModelParameter>
|
|
27
|
+
<y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
|
|
28
|
+
</y:ModelParameter>
|
|
29
|
+
</y:NodeLabel>
|
|
30
|
+
<y:Shape type="rectangle"/>
|
|
31
|
+
</y:ShapeNode>
|
|
32
|
+
</data>
|
|
33
|
+
</node>
|
|
34
|
+
<node id="n1">
|
|
35
|
+
<data key="d4"><![CDATA[vdddd]]></data>
|
|
36
|
+
<data key="d5"><![CDATA[fddf]]></data>
|
|
37
|
+
<data key="d6">
|
|
38
|
+
<y:ShapeNode>
|
|
39
|
+
<y:Geometry height="30.0" width="30.0" x="243.0212626845818" y="0.0"/>
|
|
40
|
+
<y:Fill color="#FFCC00" transparent="false"/>
|
|
41
|
+
<y:BorderStyle color="#000000" type="line" width="1.0"/>
|
|
42
|
+
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" textColor="#000000" visible="true" width="10.685546875" x="9.6572265625" y="6.015625">L<y:LabelModel>
|
|
43
|
+
<y:SmartNodeLabelModel distance="4.0"/>
|
|
44
|
+
</y:LabelModel>
|
|
45
|
+
<y:ModelParameter>
|
|
46
|
+
<y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
|
|
47
|
+
</y:ModelParameter>
|
|
48
|
+
</y:NodeLabel>
|
|
49
|
+
<y:Shape type="rectangle"/>
|
|
50
|
+
</y:ShapeNode>
|
|
51
|
+
</data>
|
|
52
|
+
</node>
|
|
53
|
+
<node id="n2">
|
|
54
|
+
<data key="d6">
|
|
55
|
+
<y:ShapeNode>
|
|
56
|
+
<y:Geometry height="30.0" width="30.0" x="168.0212626845818" y="245.2812002579896"/>
|
|
57
|
+
<y:Fill color="#FFCC00" transparent="false"/>
|
|
58
|
+
<y:BorderStyle color="#000000" type="line" width="1.0"/>
|
|
59
|
+
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" textColor="#000000" visible="true" width="7.5390625" x="11.23046875" y="6.015625">J<y:LabelModel>
|
|
60
|
+
<y:SmartNodeLabelModel distance="4.0"/>
|
|
61
|
+
</y:LabelModel>
|
|
62
|
+
<y:ModelParameter>
|
|
63
|
+
<y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
|
|
64
|
+
</y:ModelParameter>
|
|
65
|
+
</y:NodeLabel>
|
|
66
|
+
<y:Shape type="rectangle"/>
|
|
67
|
+
</y:ShapeNode>
|
|
68
|
+
</data>
|
|
69
|
+
</node>
|
|
70
|
+
<node id="n3">
|
|
71
|
+
<data key="d6">
|
|
72
|
+
<y:ShapeNode>
|
|
73
|
+
<y:Geometry height="30.0" width="30.0" x="117.83028446031335" y="231.83256817546885"/>
|
|
74
|
+
<y:Fill color="#FFCC00" transparent="false"/>
|
|
75
|
+
<y:BorderStyle color="#000000" type="line" width="1.0"/>
|
|
76
|
+
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" textColor="#000000" visible="true" width="11.58203125" x="9.208984375" y="6.015625">E<y:LabelModel>
|
|
77
|
+
<y:SmartNodeLabelModel distance="4.0"/>
|
|
78
|
+
</y:LabelModel>
|
|
79
|
+
<y:ModelParameter>
|
|
80
|
+
<y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
|
|
81
|
+
</y:ModelParameter>
|
|
82
|
+
</y:NodeLabel>
|
|
83
|
+
<y:Shape type="rectangle"/>
|
|
84
|
+
</y:ShapeNode>
|
|
85
|
+
</data>
|
|
86
|
+
</node>
|
|
87
|
+
<node id="n4">
|
|
88
|
+
<data key="d6">
|
|
89
|
+
<y:ShapeNode>
|
|
90
|
+
<y:Geometry height="30.0" width="30.0" x="131.27891654283417" y="282.0235463997373"/>
|
|
91
|
+
<y:Fill color="#FFCC00" transparent="false"/>
|
|
92
|
+
<y:BorderStyle color="#000000" type="line" width="1.0"/>
|
|
93
|
+
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" textColor="#000000" visible="true" width="7.5390625" x="11.23046875" y="6.015625">I<y:LabelModel>
|
|
94
|
+
<y:SmartNodeLabelModel distance="4.0"/>
|
|
95
|
+
</y:LabelModel>
|
|
96
|
+
<y:ModelParameter>
|
|
97
|
+
<y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
|
|
98
|
+
</y:ModelParameter>
|
|
99
|
+
</y:NodeLabel>
|
|
100
|
+
<y:Shape type="rectangle"/>
|
|
101
|
+
</y:ShapeNode>
|
|
102
|
+
</data>
|
|
103
|
+
</node>
|
|
104
|
+
<node id="n5">
|
|
105
|
+
<data key="d6">
|
|
106
|
+
<y:ShapeNode>
|
|
107
|
+
<y:Geometry height="30.0" width="30.0" x="168.0212626845818" y="36.74234614174766"/>
|
|
108
|
+
<y:Fill color="#FFCC00" transparent="false"/>
|
|
109
|
+
<y:BorderStyle color="#000000" type="line" width="1.0"/>
|
|
110
|
+
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" textColor="#000000" visible="true" width="13.0234375" x="8.48828125" y="6.015625">H<y:LabelModel>
|
|
111
|
+
<y:SmartNodeLabelModel distance="4.0"/>
|
|
112
|
+
</y:LabelModel>
|
|
113
|
+
<y:ModelParameter>
|
|
114
|
+
<y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
|
|
115
|
+
</y:ModelParameter>
|
|
116
|
+
</y:NodeLabel>
|
|
117
|
+
<y:Shape type="rectangle"/>
|
|
118
|
+
</y:ShapeNode>
|
|
119
|
+
</data>
|
|
120
|
+
</node>
|
|
121
|
+
<node id="n6">
|
|
122
|
+
<data key="d6">
|
|
123
|
+
<y:ShapeNode>
|
|
124
|
+
<y:Geometry height="30.0" width="30.0" x="131.2789165428341" y="0.0"/>
|
|
125
|
+
<y:Fill color="#FFCC00" transparent="false"/>
|
|
126
|
+
<y:BorderStyle color="#000000" type="line" width="1.0"/>
|
|
127
|
+
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" textColor="#000000" visible="true" width="13.298828125" x="8.3505859375" y="6.015625">G<y:LabelModel>
|
|
128
|
+
<y:SmartNodeLabelModel distance="4.0"/>
|
|
129
|
+
</y:LabelModel>
|
|
130
|
+
<y:ModelParameter>
|
|
131
|
+
<y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
|
|
132
|
+
</y:ModelParameter>
|
|
133
|
+
</y:NodeLabel>
|
|
134
|
+
<y:Shape type="rectangle"/>
|
|
135
|
+
</y:ShapeNode>
|
|
136
|
+
</data>
|
|
137
|
+
</node>
|
|
138
|
+
<node id="n7">
|
|
139
|
+
<data key="d6">
|
|
140
|
+
<y:ShapeNode>
|
|
141
|
+
<y:Geometry height="30.0" width="30.0" x="117.83028446031332" y="50.19097822426849"/>
|
|
142
|
+
<y:Fill color="#FFCC00" transparent="false"/>
|
|
143
|
+
<y:BorderStyle color="#000000" type="line" width="1.0"/>
|
|
144
|
+
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" textColor="#000000" visible="true" width="13.240234375" x="8.3798828125" y="6.015625">D<y:LabelModel>
|
|
145
|
+
<y:SmartNodeLabelModel distance="4.0"/>
|
|
146
|
+
</y:LabelModel>
|
|
147
|
+
<y:ModelParameter>
|
|
148
|
+
<y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
|
|
149
|
+
</y:ModelParameter>
|
|
150
|
+
</y:NodeLabel>
|
|
151
|
+
<y:Shape type="rectangle"/>
|
|
152
|
+
</y:ShapeNode>
|
|
153
|
+
</data>
|
|
154
|
+
</node>
|
|
155
|
+
<node id="n8">
|
|
156
|
+
<data key="d6">
|
|
157
|
+
<y:ShapeNode>
|
|
158
|
+
<y:Geometry height="30.0" width="30.0" x="1.4210854715202004E-14" y="168.02126268458187"/>
|
|
159
|
+
<y:Fill color="#FFCC00" transparent="false"/>
|
|
160
|
+
<y:BorderStyle color="#000000" type="line" width="1.0"/>
|
|
161
|
+
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" textColor="#000000" visible="true" width="10.90234375" x="9.548828125" y="6.015625">F<y:LabelModel>
|
|
162
|
+
<y:SmartNodeLabelModel distance="4.0"/>
|
|
163
|
+
</y:LabelModel>
|
|
164
|
+
<y:ModelParameter>
|
|
165
|
+
<y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
|
|
166
|
+
</y:ModelParameter>
|
|
167
|
+
</y:NodeLabel>
|
|
168
|
+
<y:Shape type="rectangle"/>
|
|
169
|
+
</y:ShapeNode>
|
|
170
|
+
</data>
|
|
171
|
+
</node>
|
|
172
|
+
<node id="n9">
|
|
173
|
+
<data key="d6">
|
|
174
|
+
<y:ShapeNode>
|
|
175
|
+
<y:Geometry height="30.0" width="30.0" x="54.018978969426385" y="168.02126268458187"/>
|
|
176
|
+
<y:Fill color="#FFCC00" transparent="false"/>
|
|
177
|
+
<y:BorderStyle color="#000000" type="line" width="1.0"/>
|
|
178
|
+
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" textColor="#000000" visible="true" width="12.232421875" x="8.8837890625" y="6.015625">B<y:LabelModel>
|
|
179
|
+
<y:SmartNodeLabelModel distance="4.0"/>
|
|
180
|
+
</y:LabelModel>
|
|
181
|
+
<y:ModelParameter>
|
|
182
|
+
<y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
|
|
183
|
+
</y:ModelParameter>
|
|
184
|
+
</y:NodeLabel>
|
|
185
|
+
<y:Shape type="rectangle"/>
|
|
186
|
+
</y:ShapeNode>
|
|
187
|
+
</data>
|
|
188
|
+
</node>
|
|
189
|
+
<node id="n10">
|
|
190
|
+
<data key="d6">
|
|
191
|
+
<y:ShapeNode>
|
|
192
|
+
<y:Geometry height="30.0" width="30.0" x="0.0" y="114.0022837151555"/>
|
|
193
|
+
<y:Fill color="#FFCC00" transparent="false"/>
|
|
194
|
+
<y:BorderStyle color="#000000" type="line" width="1.0"/>
|
|
195
|
+
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" textColor="#000000" visible="true" width="12.37890625" x="8.810546875" y="6.015625">C<y:LabelModel>
|
|
196
|
+
<y:SmartNodeLabelModel distance="4.0"/>
|
|
197
|
+
</y:LabelModel>
|
|
198
|
+
<y:ModelParameter>
|
|
199
|
+
<y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
|
|
200
|
+
</y:ModelParameter>
|
|
201
|
+
</y:NodeLabel>
|
|
202
|
+
<y:Shape type="rectangle"/>
|
|
203
|
+
</y:ShapeNode>
|
|
204
|
+
</data>
|
|
205
|
+
</node>
|
|
206
|
+
<node id="n11">
|
|
207
|
+
<data key="d6">
|
|
208
|
+
<y:ShapeNode>
|
|
209
|
+
<y:Geometry height="30.0" width="30.0" x="54.01897896942637" y="114.0022837151555"/>
|
|
210
|
+
<y:Fill color="#FFCC00" transparent="false"/>
|
|
211
|
+
<y:BorderStyle color="#000000" type="line" width="1.0"/>
|
|
212
|
+
<y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="17.96875" modelName="custom" textColor="#000000" visible="true" width="12.208984375" x="8.8955078125" y="6.015625">A<y:LabelModel>
|
|
213
|
+
<y:SmartNodeLabelModel distance="4.0"/>
|
|
214
|
+
</y:LabelModel>
|
|
215
|
+
<y:ModelParameter>
|
|
216
|
+
<y:SmartNodeLabelModelParameter labelRatioX="0.0" labelRatioY="0.0" nodeRatioX="0.0" nodeRatioY="0.0" offsetX="0.0" offsetY="0.0" upX="0.0" upY="-1.0"/>
|
|
217
|
+
</y:ModelParameter>
|
|
218
|
+
</y:NodeLabel>
|
|
219
|
+
<y:Shape type="rectangle"/>
|
|
220
|
+
</y:ShapeNode>
|
|
221
|
+
</data>
|
|
222
|
+
</node>
|
|
223
|
+
<edge id="e0" source="n0" target="n1">
|
|
224
|
+
<data key="d10">
|
|
225
|
+
<y:PolyLineEdge>
|
|
226
|
+
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
|
|
227
|
+
<y:LineStyle color="#000000" type="line" width="1.0"/>
|
|
228
|
+
<y:Arrows source="none" target="standard"/>
|
|
229
|
+
<y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="27.99999193262869" y="-17.0">
|
|
230
|
+
<y:LabelModel>
|
|
231
|
+
<y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
|
|
232
|
+
</y:LabelModel>
|
|
233
|
+
<y:ModelParameter>
|
|
234
|
+
<y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
|
|
235
|
+
</y:ModelParameter>
|
|
236
|
+
</y:EdgeLabel>
|
|
237
|
+
<y:BendStyle smoothed="false"/>
|
|
238
|
+
</y:PolyLineEdge>
|
|
239
|
+
</data>
|
|
240
|
+
</edge>
|
|
241
|
+
<edge id="e1" source="n11" target="n7">
|
|
242
|
+
<data key="d10">
|
|
243
|
+
<y:PolyLineEdge>
|
|
244
|
+
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
|
|
245
|
+
<y:LineStyle color="#000000" type="line" width="1.0"/>
|
|
246
|
+
<y:Arrows source="none" target="standard"/>
|
|
247
|
+
<y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="36.11885321687254" y="2.307553216343578">
|
|
248
|
+
<y:LabelModel>
|
|
249
|
+
<y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
|
|
250
|
+
</y:LabelModel>
|
|
251
|
+
<y:ModelParameter>
|
|
252
|
+
<y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
|
|
253
|
+
</y:ModelParameter>
|
|
254
|
+
</y:EdgeLabel>
|
|
255
|
+
<y:BendStyle smoothed="false"/>
|
|
256
|
+
</y:PolyLineEdge>
|
|
257
|
+
</data>
|
|
258
|
+
</edge>
|
|
259
|
+
<edge id="e2" source="n10" target="n11">
|
|
260
|
+
<data key="d10">
|
|
261
|
+
<y:PolyLineEdge>
|
|
262
|
+
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
|
|
263
|
+
<y:LineStyle color="#000000" type="line" width="1.0"/>
|
|
264
|
+
<y:Arrows source="none" target="standard"/>
|
|
265
|
+
<y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="10.009489484713185" y="27.999994896796125">
|
|
266
|
+
<y:LabelModel>
|
|
267
|
+
<y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
|
|
268
|
+
</y:LabelModel>
|
|
269
|
+
<y:ModelParameter>
|
|
270
|
+
<y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
|
|
271
|
+
</y:ModelParameter>
|
|
272
|
+
</y:EdgeLabel>
|
|
273
|
+
<y:BendStyle smoothed="false"/>
|
|
274
|
+
</y:PolyLineEdge>
|
|
275
|
+
</data>
|
|
276
|
+
</edge>
|
|
277
|
+
<edge id="e3" source="n9" target="n11">
|
|
278
|
+
<data key="d10">
|
|
279
|
+
<y:PolyLineEdge>
|
|
280
|
+
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
|
|
281
|
+
<y:LineStyle color="#000000" type="line" width="1.0"/>
|
|
282
|
+
<y:Arrows source="none" target="standard"/>
|
|
283
|
+
<y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="27.99999703583262" y="-14.009482293295406">
|
|
284
|
+
<y:LabelModel>
|
|
285
|
+
<y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
|
|
286
|
+
</y:LabelModel>
|
|
287
|
+
<y:ModelParameter>
|
|
288
|
+
<y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
|
|
289
|
+
</y:ModelParameter>
|
|
290
|
+
</y:EdgeLabel>
|
|
291
|
+
<y:BendStyle smoothed="false"/>
|
|
292
|
+
</y:PolyLineEdge>
|
|
293
|
+
</data>
|
|
294
|
+
</edge>
|
|
295
|
+
<edge id="e4" source="n8" target="n10">
|
|
296
|
+
<data key="d10">
|
|
297
|
+
<y:PolyLineEdge>
|
|
298
|
+
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
|
|
299
|
+
<y:LineStyle color="#000000" type="line" width="1.0"/>
|
|
300
|
+
<y:Arrows source="none" target="standard"/>
|
|
301
|
+
<y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="28.000000000000014" y="-14.009482293295378">
|
|
302
|
+
<y:LabelModel>
|
|
303
|
+
<y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
|
|
304
|
+
</y:LabelModel>
|
|
305
|
+
<y:ModelParameter>
|
|
306
|
+
<y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
|
|
307
|
+
</y:ModelParameter>
|
|
308
|
+
</y:EdgeLabel>
|
|
309
|
+
<y:BendStyle smoothed="false"/>
|
|
310
|
+
</y:PolyLineEdge>
|
|
311
|
+
</data>
|
|
312
|
+
</edge>
|
|
313
|
+
<edge id="e5" source="n8" target="n9">
|
|
314
|
+
<data key="d10">
|
|
315
|
+
<y:PolyLineEdge>
|
|
316
|
+
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
|
|
317
|
+
<y:LineStyle color="#000000" type="line" width="1.0"/>
|
|
318
|
+
<y:Arrows source="none" target="standard"/>
|
|
319
|
+
<y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="10.0094894847132" y="28.000007191417808">
|
|
320
|
+
<y:LabelModel>
|
|
321
|
+
<y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
|
|
322
|
+
</y:LabelModel>
|
|
323
|
+
<y:ModelParameter>
|
|
324
|
+
<y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
|
|
325
|
+
</y:ModelParameter>
|
|
326
|
+
</y:EdgeLabel>
|
|
327
|
+
<y:BendStyle smoothed="false"/>
|
|
328
|
+
</y:PolyLineEdge>
|
|
329
|
+
</data>
|
|
330
|
+
</edge>
|
|
331
|
+
<edge id="e6" source="n7" target="n5">
|
|
332
|
+
<data key="d10">
|
|
333
|
+
<y:PolyLineEdge>
|
|
334
|
+
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
|
|
335
|
+
<y:LineStyle color="#000000" type="line" width="1.0"/>
|
|
336
|
+
<y:Arrows source="none" target="standard"/>
|
|
337
|
+
<y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="15.860053177476345" y="24.272695486084416">
|
|
338
|
+
<y:LabelModel>
|
|
339
|
+
<y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
|
|
340
|
+
</y:LabelModel>
|
|
341
|
+
<y:ModelParameter>
|
|
342
|
+
<y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
|
|
343
|
+
</y:ModelParameter>
|
|
344
|
+
</y:EdgeLabel>
|
|
345
|
+
<y:BendStyle smoothed="false"/>
|
|
346
|
+
</y:PolyLineEdge>
|
|
347
|
+
</data>
|
|
348
|
+
</edge>
|
|
349
|
+
<edge id="e7" source="n7" target="n6">
|
|
350
|
+
<data key="d10">
|
|
351
|
+
<y:PolyLineEdge>
|
|
352
|
+
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
|
|
353
|
+
<y:LineStyle color="#000000" type="line" width="1.0"/>
|
|
354
|
+
<y:Arrows source="none" target="standard"/>
|
|
355
|
+
<y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="29.68285746798017" y="-4.330918538696409">
|
|
356
|
+
<y:LabelModel>
|
|
357
|
+
<y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
|
|
358
|
+
</y:LabelModel>
|
|
359
|
+
<y:ModelParameter>
|
|
360
|
+
<y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
|
|
361
|
+
</y:ModelParameter>
|
|
362
|
+
</y:EdgeLabel>
|
|
363
|
+
<y:BendStyle smoothed="false"/>
|
|
364
|
+
</y:PolyLineEdge>
|
|
365
|
+
</data>
|
|
366
|
+
</edge>
|
|
367
|
+
<edge id="e8" source="n5" target="n6">
|
|
368
|
+
<data key="d10">
|
|
369
|
+
<y:PolyLineEdge>
|
|
370
|
+
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
|
|
371
|
+
<y:LineStyle color="#000000" type="line" width="1.0"/>
|
|
372
|
+
<y:Arrows source="none" target="standard"/>
|
|
373
|
+
<y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="15.842037556140326" y="-26.584378082007763">
|
|
374
|
+
<y:LabelModel>
|
|
375
|
+
<y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
|
|
376
|
+
</y:LabelModel>
|
|
377
|
+
<y:ModelParameter>
|
|
378
|
+
<y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
|
|
379
|
+
</y:ModelParameter>
|
|
380
|
+
</y:EdgeLabel>
|
|
381
|
+
<y:BendStyle smoothed="false"/>
|
|
382
|
+
</y:PolyLineEdge>
|
|
383
|
+
</data>
|
|
384
|
+
</edge>
|
|
385
|
+
<edge id="e9" source="n4" target="n3">
|
|
386
|
+
<data key="d10">
|
|
387
|
+
<y:PolyLineEdge>
|
|
388
|
+
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
|
|
389
|
+
<y:LineStyle color="#000000" type="line" width="1.0"/>
|
|
390
|
+
<y:Arrows source="none" target="standard"/>
|
|
391
|
+
<y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="24.27270121798017" y="-19.860073635785056">
|
|
392
|
+
<y:LabelModel>
|
|
393
|
+
<y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
|
|
394
|
+
</y:LabelModel>
|
|
395
|
+
<y:ModelParameter>
|
|
396
|
+
<y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
|
|
397
|
+
</y:ModelParameter>
|
|
398
|
+
</y:EdgeLabel>
|
|
399
|
+
<y:BendStyle smoothed="false"/>
|
|
400
|
+
</y:PolyLineEdge>
|
|
401
|
+
</data>
|
|
402
|
+
</edge>
|
|
403
|
+
<edge id="e10" source="n4" target="n2">
|
|
404
|
+
<data key="d10">
|
|
405
|
+
<y:PolyLineEdge>
|
|
406
|
+
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
|
|
407
|
+
<y:LineStyle color="#000000" type="line" width="1.0"/>
|
|
408
|
+
<y:Arrows source="none" target="standard"/>
|
|
409
|
+
<y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="22.584377644031065" y="15.842017194147331">
|
|
410
|
+
<y:LabelModel>
|
|
411
|
+
<y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
|
|
412
|
+
</y:LabelModel>
|
|
413
|
+
<y:ModelParameter>
|
|
414
|
+
<y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
|
|
415
|
+
</y:ModelParameter>
|
|
416
|
+
</y:EdgeLabel>
|
|
417
|
+
<y:BendStyle smoothed="false"/>
|
|
418
|
+
</y:PolyLineEdge>
|
|
419
|
+
</data>
|
|
420
|
+
</edge>
|
|
421
|
+
<edge id="e11" source="n3" target="n9">
|
|
422
|
+
<data key="d10">
|
|
423
|
+
<y:PolyLineEdge>
|
|
424
|
+
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
|
|
425
|
+
<y:LineStyle color="#000000" type="line" width="1.0"/>
|
|
426
|
+
<y:Arrows source="none" target="standard"/>
|
|
427
|
+
<y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="2.3075510318139436" y="-40.118853313188254">
|
|
428
|
+
<y:LabelModel>
|
|
429
|
+
<y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
|
|
430
|
+
</y:LabelModel>
|
|
431
|
+
<y:ModelParameter>
|
|
432
|
+
<y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
|
|
433
|
+
</y:ModelParameter>
|
|
434
|
+
</y:EdgeLabel>
|
|
435
|
+
<y:BendStyle smoothed="false"/>
|
|
436
|
+
</y:PolyLineEdge>
|
|
437
|
+
</data>
|
|
438
|
+
</edge>
|
|
439
|
+
<edge id="e12" source="n2" target="n3">
|
|
440
|
+
<data key="d10">
|
|
441
|
+
<y:PolyLineEdge>
|
|
442
|
+
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
|
|
443
|
+
<y:LineStyle color="#000000" type="line" width="1.0"/>
|
|
444
|
+
<y:Arrows source="none" target="standard"/>
|
|
445
|
+
<y:EdgeLabel alignment="center" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="custom" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="4.0" x="-4.330910567640871" y="-33.682853462567834">
|
|
446
|
+
<y:LabelModel>
|
|
447
|
+
<y:SmartEdgeLabelModel autoRotationEnabled="false" defaultAngle="0.0" defaultDistance="10.0"/>
|
|
448
|
+
</y:LabelModel>
|
|
449
|
+
<y:ModelParameter>
|
|
450
|
+
<y:SmartEdgeLabelModelParameter angle="0.0" distance="30.0" distanceToCenter="true" position="right" ratio="0.5" segment="0"/>
|
|
451
|
+
</y:ModelParameter>
|
|
452
|
+
</y:EdgeLabel>
|
|
453
|
+
<y:BendStyle smoothed="false"/>
|
|
454
|
+
</y:PolyLineEdge>
|
|
455
|
+
</data>
|
|
456
|
+
</edge>
|
|
457
|
+
</graph>
|
|
458
|
+
<data key="d0">
|
|
459
|
+
<y:Resources/>
|
|
460
|
+
</data>
|
|
461
|
+
</graphml>
|