-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml
411 lines (341 loc) · 7.38 KB
/
config.yaml
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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
chipollino_path: ../Chipollino
types:
NFA:
class: FiniteAutomaton
children: [ DFA, RandomNFA ]
ru_str: автомат
DFA:
class: FiniteAutomaton
children: [ RandomDFA ]
ru_str: автомат
MFA:
class: MemoryFiniteAutomaton
children: [ NFA, RandomMFA ]
ru_str: автомат
Regex:
class: Regex
children: [ RandomRegex ]
ru_str: регулярное выражение
BRefRegex:
class: BackRefRegex
children: [ Regex, RandomBRefRegex ]
ru_str: регулярное выражение
RandomRegex:
RandomBRefRegex:
RandomDFA:
RandomNFA:
RandomMFA:
Int:
class: int
ru_str: значение
String:
class: std::string
ru_str: строка
Boolean:
class: bool
ru_str: значение
OptionalBool:
class: std::optional<bool>
ru_str: значение
AmbiguityValue:
class: FiniteAutomaton::AmbiguityValue
ru_str: значение
PrefixGrammar:
class: PrefixGrammar
ru_str: грамматика
Array:
class: std::vector<GeneralObject>
ru_str: массив
classes:
FiniteAutomaton:
file: FiniteAutomaton
extends: AbstractMachine
MemoryFiniteAutomaton:
file: MemoryFiniteAutomaton
extends: AbstractMachine
Regex:
file: Regex
extends: AlgExpression
BackRefRegex:
file: BackRefRegex
extends: AlgExpression
PrefixGrammar:
file: Grammar
functions:
- name: Thompson
prog_name: to_thompson
return_type: NFA
arguments: [ Regex ]
- name: IlieYu
prog_name:
return_type: NFA
arguments: [ Regex ]
- name: Antimirov
prog_name:
return_type: NFA
arguments: [ Regex ]
- name: Arden
prog_name:
return_type: Regex
arguments: [ NFA ]
- name: Glushkov
prog_name:
return_type: NFA
arguments: [ Regex ]
- name: MFA
prog_name: to_mfa
return_type: MFA
arguments: [ BRefRegex ]
- name: MFAexpt
prog_name: to_mfa_additional
return_type: MFA
arguments: [ BRefRegex ]
- name: Determinize
prog_name:
return_type: DFA
arguments: [ NFA ]
- name: Determinize+
prog_name:
return_type: DFA
arguments: [ NFA ]
need_template: false
- name: RemEps
prog_name:
return_type: NFA
arguments: [ NFA ]
- name: RemEps
prog_name:
return_type: MFA
arguments: [ MFA ]
- name: Linearize
prog_name:
return_type: Regex
arguments: [ Regex ]
- name: Minimize
prog_name:
return_type: DFA
arguments: [ NFA ]
- name: Minimize+
prog_name:
return_type: DFA
arguments: [ NFA ]
need_template: false
- name: Reverse
prog_name: reverse
return_type: NFA
arguments: [ NFA ]
- name: Reverse
prog_name: reverse
return_type: BRefRegex
arguments: [ BRefRegex ]
- name: Annote
prog_name:
return_type: DFA
arguments: [ NFA ]
- name: DeLinearize
prog_name:
return_type: Regex
arguments: [ Regex ]
- name: DeLinearize
prog_name:
return_type: NFA
arguments: [ NFA ]
- name: AddTrap
prog_name: add_trap_state
return_type: MFA
arguments: [ MFA ]
- name: Complement
prog_name:
return_type: DFA
arguments: [ DFA ]
- name: Complement
prog_name: complement
return_type: MFA
arguments: [ MFA ]
- name: RemoveTrap
prog_name:
return_type: DFA
arguments: [ DFA ]
- name: DeAnnote
prog_name:
return_type: Regex
arguments: [ Regex ]
- name: DeAnnote
prog_name:
return_type: NFA
arguments: [ NFA ]
- name: MergeBisim
prog_name: merge_bisimilar
return_type: NFA
arguments: [ NFA ]
- name: Disambiguate
prog_name:
return_type: Regex
arguments: [ Regex ]
- name: Intersect
prog_name:
return_type: NFA
arguments: [ NFA, NFA ]
- name: Union
prog_name:
return_type: NFA
arguments: [ NFA, NFA ]
- name: Difference
prog_name:
return_type: NFA
arguments: [ NFA, NFA ]
- name: PumpLength
prog_name:
return_type: Int
arguments: [ Regex ]
- name: ClassLength
prog_name:
return_type: Int
arguments: [ NFA ]
- name: Normalize
prog_name:
return_type: Regex
arguments: [ Regex, Array ]
- name: States
prog_name:
return_type: Int
arguments: [ NFA ]
- name: ClassCard
prog_name:
return_type: Int
arguments: [ NFA ]
- name: Ambiguity
prog_name:
return_type: AmbiguityValue
arguments: [ NFA ]
- name: MyhillNerode
prog_name:
return_type: Int
arguments: [ NFA ]
- name: GlaisterShallit
prog_name:
return_type: Int
arguments: [ NFA ]
- name: PrefixGrammar
prog_name:
return_type: PrefixGrammar
arguments: [ NFA ]
- name: PGtoNFA
prog_name:
return_type: NFA
arguments: [ PrefixGrammar ]
- name: Bisimilar
prog_name: bisimilar
return_type: Boolean
arguments: [ NFA, NFA ]
- name: Minimal
prog_name:
return_type: OptionalBool
arguments: [ NFA ]
- name: Deterministic
prog_name:
return_type: Boolean
arguments: [ NFA ]
- name: Deterministic
prog_name: is_deterministic
return_type: Boolean
arguments: [ MFA ]
- name: Subset
prog_name: subset
return_type: Boolean
arguments: [ Regex, Regex ]
- name: Subset
prog_name: subset
return_type: Boolean
arguments: [ NFA, NFA ]
- name: Equiv
prog_name:
return_type: Boolean
arguments: [ Regex, Regex ]
- name: Equiv
prog_name:
return_type: Boolean
arguments: [ NFA, NFA ]
- name: Equal
prog_name:
return_type: Boolean
arguments: [ Regex, Regex ]
- name: Equal
prog_name:
return_type: Boolean
arguments: [ NFA, NFA ]
- name: Equal
prog_name:
return_type: Boolean
arguments: [ MFA, MFA ]
- name: Equal
prog_name:
return_type: Boolean
arguments: [ Int, Int ]
- name: Equal
prog_name:
return_type: Boolean
arguments: [ AmbiguityValue, AmbiguityValue ]
- name: Equal
prog_name:
return_type: Boolean
arguments: [ Boolean, Boolean ]
- name: Equal
prog_name:
return_type: Boolean
arguments: [ BRefRegex, BRefRegex ]
- name: OneUnambiguity
prog_name:
return_type: Boolean
arguments: [ Regex ]
- name: OneUnambiguity
prog_name:
return_type: Boolean
arguments: [ NFA ]
- name: SemDet
prog_name:
return_type: Boolean
arguments: [ NFA ]
- name: IsAcreg
prog_name: is_acreg
return_type: Boolean
arguments: [ BRefRegex ]
- name: Bisimilar
prog_name: bisimilar
return_type: OptionalBool
arguments: [ MFA, MFA ]
- name: ActionBisimilar
prog_name: action_bisimilar
return_type: Boolean
arguments: [ MFA, MFA ]
- name: SymbolicBisimilar
prog_name: symbolic_bisimilar
return_type: Boolean
arguments: [ MFA, MFA ]
- name: MergeBisim
prog_name: merge_bisimilar
return_type: MFA
arguments: [ MFA ]
- name: Action
prog_name: to_action_fa
return_type: NFA
arguments: [ MFA ]
- name: Symbolic
prog_name: to_symbolic_fa
return_type: NFA
arguments: [ MFA ]
- name: getNFA
prog_name:
return_type: NFA
arguments: [ String ]
need_template: false
- name: getMFA
prog_name:
return_type: MFA
arguments: [ String ]
need_template: false
- name: getDFA
prog_name:
return_type: DFA
arguments: [ String ]
need_template: false