-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathevaluations.yaml
More file actions
313 lines (305 loc) · 11.4 KB
/
evaluations.yaml
File metadata and controls
313 lines (305 loc) · 11.4 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
pr:
doc_title: Permute and Reject
diagram0:
title: Time for Creation
xlabel: points n
ylabel: time in s
style: dots
query: "select number_of_points as numberOfPoints, time_for_creating_polygon as timeForCreation from Permute order by number_of_points asc"
diagram1:
title: Surface Area
xlabel: points n
ylabel: surface area
style: dots
query: "select number_of_points as numberOfPoints, ABS (surface_area) as surfaceArea from Permute order by number_of_points asc"
diagram2:
title: Circumference
xlabel: points n
ylabel: circumference
style: dots
query: "select number_of_points as numberOfPoints, circumference as circumference from Permute order by number_of_points asc"
diagram3:
title: Iterations
xlabel: points n
ylabel: iterations
style: dots
query: "select number_of_points as numberOfPoints, iterations as iterations from Permute order by number_of_points asc"
sp:
doc_title: Space Partitioning
diagram0:
title: Time for Creation
xlabel: points n
ylabel: time in s
style: lines
query: "select number_of_points as numberOfPoints, time_for_creating_polygon as timeForCreation from Space order by number_of_points asc"
diagram1:
title: "Time for Creation (excerpt)"
xlabel: points n
ylabel: time in s
yrange: "[0:20000]"
style: dots
query: "select number_of_points as numberOfPoints, time_for_creating_polygon as timeForCreation from Space order by number_of_points asc"
diagram2:
title: Surface Area
xlabel: points n
ylabel: surface area
style: lines
query: "select number_of_points as numberOfPoints, ABS (surface_area) as surfaceArea from Space order by number_of_points asc"
diagram3:
title: Circumference
xlabel: points n
ylabel: circumference
style: lines
query: "select number_of_points as numberOfPoints, circumference as circumference from Space order by number_of_points asc"
rpa:
doc_title: RandomPolygonAlgorithm
diagram0:
title: Time for Creation
xlabel: points n
ylabel: time in s
style: dots
query: "select number_of_points as numberOfPoints, time_for_creating_polygon as timeForCreation from RPA order by number_of_points asc"
diagram1:
title: Surface Area
xlabel: points n
ylabel: surface area
style: dots
query: "select number_of_points as numberOfPoints, ABS (surface_area) as surfaceArea from RPA order by number_of_points asc"
diagram2:
title: Circumference
xlabel: points n
ylabel: circumference
style: dots
query: "select number_of_points as numberOfPoints, circumference as circumference from RPA order by number_of_points asc"
sg:
doc_title: Steady Growth
diagram0:
title: Time for Creation
xlabel: points n
ylabel: time in s
style: dots
query: "select number_of_points as numberOfPoints, time_for_creating_polygon as timeForCreation from Steady order by number_of_points asc"
diagram1:
title: "Time for Creation (excerpt)"
xlabel: points n
ylabel: time in s
yrange: "[0:20000]"
style: dots
query: "select number_of_points as numberOfPoints, time_for_creating_polygon as timeForCreation from Steady order by number_of_points asc"
diagram2:
title: Surface Area
xlabel: points n
ylabel: surface area
style: dots
query: "select number_of_points as numberOfPoints, ABS (surface_area) as surfaceArea from Steady order by number_of_points asc"
diagram3:
title: Circumference
xlabel: points n
ylabel: circumference
style: dots
query: "select number_of_points as numberOfPoints, circumference as circumference from Steady order by number_of_points asc"
diagram4:
title: Iterations
xlabel: points n
ylabel: iterations
style: dots
query: "select number_of_points as numberOfPoints, iterations as iterations from Steady order by number_of_points asc"
diagram5:
title: Rejections
xlabel: points n
ylabel: rejections
style: dots
query: "select number_of_points as numberOfPoints, rejections as rejections from Steady order by number_of_points asc"
diagram6:
title: Initialize Rejections
xlabel: points n
ylabel: init. rejections
style: dots
query: "select number_of_points as numberOfPoints, initializeRejections as initializeRejections from Steady order by number_of_points asc"
diagram7:
title: Maximum Rejections
xlabel: points n
ylabel: max. rejections
style: dots
query: "select number_of_points as numberOfPoints, maximumRejections as maximumRejections from Steady order by number_of_points asc"
2opt:
doc_title: 2-Opt-Move
diagram0:
title: Time for Creation
xlabel: points n
ylabel: time in s
style: dots
query: "select number_of_points as numberOfPoints, time_for_creating_polygon as timeForCreation from TwoOpt order by number_of_points asc"
diagram1:
title: "Time for Creation (excerpt)"
xlabel: points n
ylabel: time in s
yrange: "[0:20000]"
style: dots
query: "select number_of_points as numberOfPoints, time_for_creating_polygon as timeForCreation from TwoOpt order by number_of_points asc"
diagram2:
title: Surface Area
xlabel: points n
ylabel: surface area
style: dots
query: "select number_of_points as numberOfPoints, ABS (surface_area) as surfaceArea from TwoOpt order by number_of_points asc"
diagram3:
title: Circumference
xlabel: points n
ylabel: circumference
style: dots
query: "select number_of_points as numberOfPoints, circumference as circumference from TwoOpt order by number_of_points asc"
diagram4:
title: Iterations
xlabel: points n
ylabel: iterations
style: dots
query: "select number_of_points as numberOfPoints, iterations as iterations from TwoOpt order by number_of_points asc"
icb:
doc_title: "Incremental Construction and Backtracking"
diagram0:
title: Time for Creation
xlabel: points n
ylabel: time in s
style: dots
query: "select number_of_points as numberOfPoints, time_for_creating_polygon as timeForCreation from Backtrack order by number_of_points asc"
diagram1:
title: Surface Area
xlabel: points n
ylabel: surface area
style: dots
query: "select number_of_points as numberOfPoints, ABS (surface_area) as surfaceArea from Backtrack order by number_of_points asc"
diagram2:
title: Circumference
xlabel: points n
ylabel: circumference
style: dots
query: "select number_of_points as numberOfPoints, circumference as circumference from Backtrack order by number_of_points asc"
diagram3:
title: Iterations
xlabel: points n
ylabel: iterations
style: dots
query: "select number_of_points as numberOfPoints, iterations as iterations from Backtrack order by number_of_points asc"
diagram4:
title: Times Backtracked
xlabel: points n
ylabel: times backtracked
style: dots
query: "select number_of_points as numberOfPoints, count_of_backtracks as timesBacktracked from Backtrack order by number_of_points asc"
diagram5:
title: Times Backtracked (excerpt)
xlabel: points n
ylabel: times backtracked
yrange: "[0:20000]"
style: dots
query: "select number_of_points as numberOfPoints, count_of_backtracks as timesBacktracked from Backtrack order by number_of_points asc"
vir:
doc_title: "Orouke and Virmani"
diagram0:
title: Time for Creation
xlabel: points n
ylabel: time in s
style: dots
query: "select number_of_points as numberOfPoints, time_for_creating_polygon as timeForCreation from Velocity order by number_of_points asc"
diagram1:
title: Surface Area
xlabel: points n
ylabel: surface area
style: dots
query: "select number_of_points as numberOfPoints, ABS (surface_area) as surfaceArea from Velocity order by number_of_points asc"
diagram2:
title: Circumference
xlabel: points n
ylabel: circumference
style: dots
query: "select number_of_points as numberOfPoints, circumference as circumference from Velocity order by number_of_points asc"
diagram3:
title: Iterations
xlabel: points n
ylabel: iterations
style: dots
query: "select number_of_points as numberOfPoints, iterations as iterations from Velocity order by number_of_points asc"
diagram4:
title: Rejections
xlabel: points n
ylabel: rejections
style: dots
query: "select number_of_points as numberOfPoints, rejections as rejections from Velocity order by number_of_points asc"
diagram5:
title: Average Velocity without Collisions
xlabel: points n
ylabel: rejections
style: dots
query: "select number_of_points as numberOfPoints, ABS (avg_velocity_without_collisions) as avgVelocityWithoutCollisions from Velocity order by number_of_points asc"
full:
doc_title: "Comarison of all Algorithms"
diagram0:
title: Time for Creation
xlabel: points n
ylabel: time in s
style: dots
query: >
Select
p.number_of_points as numberOfPoints,
b.time_for_creating_polygon as icb,
p.time_for_creating_polygon as permute,
r.time_for_creating_polygon as rpa,
sp.time_for_creating_polygon as space,
sg.time_for_creating_polygon as seady,
opt.time_for_creating_polygon as twoOpt,
vir.time_for_creating_polygon as virmani
From Permute as p
Join Backtrack as b On (p.number_of_points = b.number_of_points)
Join RPA as r On (p.number_of_points = r.number_of_points)
Join Space as sp On (p.number_of_points = sp.number_of_points)
Join Steady as sg On (p.number_of_points = sg.number_of_points)
Join TwoOpt as opt On (p.number_of_points = opt.number_of_points)
Join Velocity as vir On (p.number_of_points = vir.number_of_points)
order by p.number_of_points asc
diagram1:
title: Surface Area
xlabel: points n
ylabel: time in s
style: dots
query: >
Select
p.number_of_points as numberOfPoints,
abs (b.surface_area) as icb,
abs (p.surface_area) as permute,
abs (r.surface_area) as rpa,
abs (sp.surface_area) as space,
abs (sg.surface_area) as seady,
abs (opt.surface_area) as twoOpt,
abs (vir.surface_area) as virmani
From Permute as p
Join Backtrack as b On (p.number_of_points = b.number_of_points)
Join RPA as r On (p.number_of_points = r.number_of_points)
Join Space as sp On (p.number_of_points = sp.number_of_points)
Join Steady as sg On (p.number_of_points = sg.number_of_points)
Join TwoOpt as opt On (p.number_of_points = opt.number_of_points)
Join Velocity as vir On (p.number_of_points = vir.number_of_points)
order by p.number_of_points asc
diagram2:
title: Circumference
xlabel: points n
ylabel: time in s
style: dots
query: >
Select
p.number_of_points as numberOfPoints,
b.circumference as icb,
p.circumference as permute,
r.circumference as rpa,
sp.circumference as space,
sg.circumference as seady,
opt.circumference as twoOpt,
vir.circumference as virmani
From Permute as p
Join Backtrack as b On (p.number_of_points = b.number_of_points)
Join RPA as r On (p.number_of_points = r.number_of_points)
Join Space as sp On (p.number_of_points = sp.number_of_points)
Join Steady as sg On (p.number_of_points = sg.number_of_points)
Join TwoOpt as opt On (p.number_of_points = opt.number_of_points)
Join Velocity as vir On (p.number_of_points = vir.number_of_points)
order by p.number_of_points asc