aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/case.study.pledge.originalFiles/output/x.gml
blob: 6159912aba6bb438d8ba9f534d45870336e9eb27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
graph
[
  node
  [
   id 1
   label "Node A"
  ]
  node
  [
   id 2
   label "Node B"
   		graphics
		[
			fill	"#00FF00"
		]
  ]
  node
  [
   id 3
   label "Node C"
  ]
   edge
  [
   source 2
   target 1
   label "Edge B to A"
  ]
  edge
  [
   source 3
   target 1
   label "Edge C to A"
  ]
]