-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.php
153 lines (151 loc) · 2.96 KB
/
info.php
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
<?php
$title = 'Termination Competition 2019';
$shortname = 'TermCOMP 2019';
$note = '';
$showconfig = true;
$showscore = true;
$closed = true;
$db = 'TPDB 11.0';
$previous = 'Y2018-1';
$teams = [];
$categories = [
"Termination of Rewriting" => [
'TRS Standard' => [
'type' => 'termination',
'dir' => 'TRS_Standard',
'id' => 33457,
'certified' => [
'id' => 33116,
],
],
'SRS Standard' => [
'type' => 'termination',
'dir' => 'SRS_Standard',
'id' => 33458,
'certified' => [
'id' => 33117,
],
],
'TRS Relative' => [
'type' => 'termination',
'dir' => 'TRS_Relative',
'id' => 33012,
'certified' => [
'id' => 33126,
],
],
'SRS Relative' => [
'type' => 'termination',
'dir' => 'SRS_Relative',
'id' => 33461,
'certified' => [
'id' => 33127,
],
],
'TRS Equational' => [
'type' => 'termination',
'dir' => 'TRS_Equational',
'id' => 33020,
'certified' => [
'id' => 33128,
],
],
'TRS Conditional' => [
'type' => 'termination',
'dir' => 'TRS_Conditional',
'id' => 33455,
],
'TRS Context Sensitive' => [
'type' => 'termination',
'dir' => 'TRS_Contextsensitive',
'id' => 33019,
],
'TRS Innermost' => [
'type' => 'termination',
'dir' => 'TRS_Innermost',
'id' => 33453,
'certified' => [
'id' => 33570,
],
],
'HRS Union Beta' => [
'type' => 'termination',
'dir' => 'Higher_Order_Rewriting_Union_Beta',
'id' => 33452,
],
],
"Termination of Programs" => [
'C' => [
'type' => 'termination',
'dir' => 'C',
'id' => 33437,
],
'C Integer' => [
'type' => 'termination',
'dir' => 'C_Integer',
'id' => 33454,
],
'Logic Programming' => [
'type' => 'termination',
'dir' => 'Logic_Programming',
'previous' => null,
'id' => 33595,
],
'Integer Transition Systems' => [
'type' => 'termination',
'dir' => 'Integer_Transition_Systems',
'id' => 33456,
],
'Integer TRS Innermost' => [
'type' => 'termination',
'dir' => 'Integer_TRS_Innermost',
'id' => 33016,
],
],
"Complexity Analysis" => [
'Complexity: ITS' => [
'type' => 'complexity',
'dir' => 'Complexity_ITS',
'id' => 33014,
],
'Complexity: C Integer' => [
'type' => 'complexity',
'dir' => 'Complexity_C_Integer',
'id' => 33013,
],
],
"Demonstrations" => [
'TRS Outermost' => [
'type' => 'termination',
'dir' => 'TRS_Outermost',
'id' => 33568,
'certified' => [
'id' => 33569,
],
],
'Java Bytecode' => [
'type' => 'termination',
'dir' => 'Java_Bytecode',
'id' => 33571,
],
'Haskell' => [
'type' => 'termination',
'dir' => 'Haskell',
'id' => 33572,
],
'Runtime Complexity: TRS' => [
'type' => 'complexity',
'dir' => 'Runtime_Complexity_Full_Rewriting',
'id' => 33563,
],
'Runtime Complexity: TRS Innermost' => [
'type' => 'complexity',
'dir' => 'Runtime_Complexity_Innermost_Rewriting',
'id' => 33566,
'certified' => [
'id' => 33567,
],
],
],
];
?>