-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.xmi
1642 lines (1642 loc) · 180 KB
/
project.xmi
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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<XMI xmlns:UML="http://schema.omg.org/spec/UML/1.3" verified="false" xmi.version="1.2" timestamp="2018-06-28T11:09:51">
<XMI.header>
<XMI.documentation>
<XMI.exporter>umbrello uml modeller http://umbrello.kde.org</XMI.exporter>
<XMI.exporterVersion>1.6.10</XMI.exporterVersion>
<XMI.exporterEncoding>UnicodeUTF8</XMI.exporterEncoding>
</XMI.documentation>
<XMI.metamodel xmi.version="1.3" xmi.name="UML" href="UML.xml"/>
</XMI.header>
<XMI.content>
<UML:Model isLeaf="false" isRoot="false" isSpecification="false" xmi.id="m1" name="UML model" isAbstract="false">
<UML:Namespace.ownedElement>
<UML:Stereotype isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="m1" xmi.id="folder" name="folder" isAbstract="false"/>
<UML:Stereotype isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="m1" xmi.id="datatype" name="datatype" isAbstract="false"/>
<UML:Stereotype isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="m1" xmi.id="37JEobTwuFkU" name="singleton" isAbstract="false"/>
<UML:Stereotype isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="m1" xmi.id="class-or-package" name="class-or-package" isAbstract="false"/>
<UML:Model isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="m1" xmi.id="Logical View" name="Logical View" isAbstract="false">
<UML:Namespace.ownedElement>
<UML:Package isLeaf="false" isRoot="false" stereotype="folder" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="Datatypes" name="Datatypes" isAbstract="false">
<UML:Namespace.ownedElement>
<UML:DataType isLeaf="false" isRoot="false" stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" xmi.id="zUFPHjh7KDYM" name="char" isAbstract="false"/>
<UML:DataType isLeaf="false" isRoot="false" stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" xmi.id="s0WBrvGHldLI" name="int" isAbstract="false"/>
<UML:DataType isLeaf="false" isRoot="false" stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" xmi.id="wfnMFn19Nsrx" name="float" isAbstract="false"/>
<UML:DataType isLeaf="false" isRoot="false" stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" xmi.id="6hdYN41IHr4Y" name="double" isAbstract="false"/>
<UML:DataType isLeaf="false" isRoot="false" stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" xmi.id="tHbs3HAyTxOy" name="bool" isAbstract="false"/>
<UML:DataType isLeaf="false" isRoot="false" stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" xmi.id="BZ26rvH8Ee1x" name="string" isAbstract="false"/>
<UML:DataType isLeaf="false" isRoot="false" stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" xmi.id="Dm5XtyBQrSXu" name="unsigned char" isAbstract="false"/>
<UML:DataType isLeaf="false" isRoot="false" stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" xmi.id="IlATqPieTXgl" name="signed char" isAbstract="false"/>
<UML:DataType isLeaf="false" isRoot="false" stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" xmi.id="hoSNBQSYdINR" name="unsigned int" isAbstract="false"/>
<UML:DataType isLeaf="false" isRoot="false" stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" xmi.id="5NcymcbisFDg" name="signed int" isAbstract="false"/>
<UML:DataType isLeaf="false" isRoot="false" stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" xmi.id="ClT94UXkioKh" name="short int" isAbstract="false"/>
<UML:DataType isLeaf="false" isRoot="false" stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" xmi.id="aTbx6yv526Dv" name="unsigned short int" isAbstract="false"/>
<UML:DataType isLeaf="false" isRoot="false" stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" xmi.id="FEQ2fNEsDGPS" name="signed short int" isAbstract="false"/>
<UML:DataType isLeaf="false" isRoot="false" stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" xmi.id="0jZrFre26Hcf" name="long int" isAbstract="false"/>
<UML:DataType isLeaf="false" isRoot="false" stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" xmi.id="XKe7RiDQI1ca" name="signed long int" isAbstract="false"/>
<UML:DataType isLeaf="false" isRoot="false" stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" xmi.id="1Ncwf8DMmco3" name="unsigned long int" isAbstract="false"/>
<UML:DataType isLeaf="false" isRoot="false" stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" xmi.id="4FnWn8aMML5C" name="long double" isAbstract="false"/>
<UML:DataType isLeaf="false" isRoot="false" stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" xmi.id="6EthTXfhrrG9" name="wchar_t" isAbstract="false"/>
<UML:DataType isLeaf="false" isRoot="false" stereotype="datatype" visibility="public" isSpecification="false" namespace="Datatypes" xmi.id="aGDxxOXmiybT" name="undef" isAbstract="false"/>
</UML:Namespace.ownedElement>
</UML:Package>
<UML:Generalization visibility="public" isSpecification="false" child="o6627heT5qM4" namespace="Logical View" parent="546tooNL0Q7Y" xmi.id="tgQ49jVr87C8" name="" discriminator=""/>
<UML:Generalization visibility="public" isSpecification="false" child="UgdNpEKELGcw" namespace="Logical View" parent="o6627heT5qM4" xmi.id="eOGHXUHuWrPQ" name="" discriminator=""/>
<UML:Generalization visibility="public" isSpecification="false" child="SB6OQvCndoBr" namespace="Logical View" parent="o6627heT5qM4" xmi.id="lQsVqd4n0DpY" name="" discriminator=""/>
<UML:Generalization visibility="public" isSpecification="false" child="OF72e636eAW7" namespace="Logical View" parent="o6627heT5qM4" xmi.id="A9PTsTX4Dc6T" name="" discriminator=""/>
<UML:Generalization visibility="public" isSpecification="false" child="fi38S1qDbrHT" namespace="Logical View" parent="o6627heT5qM4" xmi.id="QtViSgoGxwEx" name="" discriminator=""/>
<UML:Generalization visibility="public" isSpecification="false" child="L5wnqwnbipsk" namespace="Logical View" parent="546tooNL0Q7Y" xmi.id="tfNGJ885F38C" name="" discriminator=""/>
<UML:Generalization visibility="public" isSpecification="false" child="S4yiqbVFd6NK" namespace="Logical View" parent="L5wnqwnbipsk" xmi.id="JqzbNyX8XJ3i" name="" discriminator=""/>
<UML:Generalization visibility="public" isSpecification="false" child="4b2dQ0x2dmpU" namespace="Logical View" parent="546tooNL0Q7Y" xmi.id="Ooo7qPtQbEb0" name="" discriminator=""/>
<UML:Generalization visibility="public" isSpecification="false" child="KGURbznxPmsi" namespace="Logical View" parent="4b2dQ0x2dmpU" xmi.id="ClfqPf1S2yu6" name="" discriminator=""/>
<UML:Generalization visibility="public" isSpecification="false" child="milrlksfeuXz" namespace="Logical View" parent="4b2dQ0x2dmpU" xmi.id="DMUy1IScxYYU" name="" discriminator=""/>
<UML:Generalization visibility="public" isSpecification="false" child="BBVygmAAJDYA" namespace="Logical View" parent="4b2dQ0x2dmpU" xmi.id="CcFPJrVSVqH9" name="" discriminator=""/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="8hYVGvPepo9r" name="_Element" isAbstract="false"/>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="Vwq9JAOQSLxS" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="false" visibility="public" isSpecification="false" multiplicity="1" type="Jmaoc1ymHyD3" xmi.id="funCma9bAvl8" name="" aggregation="none" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="m" type="o6627heT5qM4" xmi.id="xafL16IgavQ4" name="math_formulae" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="Jmaoc1ymHyD3" xmi.id="toAWkX2ziw3D" name="" client="S4yiqbVFd6NK"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="Jmaoc1ymHyD3" xmi.id="gnr5dRE2IR6j" name="" client="L5wnqwnbipsk"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="Jmaoc1ymHyD3" xmi.id="8ZNspn9Y9c9I" name="" client="o6627heT5qM4"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="Icfa9xxQSrS4" name="str" isAbstract="false"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="2TOVhh3e4HqO" name="iterable of string" isAbstract="false"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="0kYPY6UanTEn" name="set of Formula" isAbstract="false"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="2720737f2d5D" name="set of MathFormat" isAbstract="false"/>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="MPF3dCR1Wj88" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="Jmaoc1ymHyD3" xmi.id="mQXj5LN9cBC6" name="" aggregation="aggregate" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1..m" type="o6627heT5qM4" xmi.id="DipG9PENc5MQ" name="math_formats" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="zxCmvjoRDVEQ" name="iterable of Formula" isAbstract="false"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="NTfznvloa2wU" name="file" isAbstract="false"/>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="v9y2N96diuEO" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="1gMUZGxpPnQh" xmi.id="HHabRKjx1yF3" name="" aggregation="composite" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1..m" type="Jmaoc1ymHyD3" xmi.id="rdU3gR8V8fWf" name="formulae" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="Jmaoc1ymHyD3" xmi.id="Pvv8lyUn6xut" name="" client="1gMUZGxpPnQh"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="o6627heT5qM4" xmi.id="cvI6GwBOPDia" name="" client="1gMUZGxpPnQh"/>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="EqQlh730Jba7" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="false" visibility="public" isSpecification="false" type="6EW05LbGMOY8" xmi.id="rcj3hF1UKLNA" name="" aggregation="none" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" type="4b2dQ0x2dmpU" xmi.id="Wx5o8ymKTA68" name="" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="pWoYaddHmzep" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="false" visibility="public" isSpecification="false" multiplicity="1" type="6EW05LbGMOY8" xmi.id="ct5PIkR16NIV" name="" aggregation="none" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="4b2dQ0x2dmpU" xmi.id="v4DfWjujKM3q" name="aggregation" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="6EW05LbGMOY8" xmi.id="Zj60uetC16SM" name="" client="1gMUZGxpPnQh"/>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="iOTP18OrAGME" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" type="6EW05LbGMOY8" xmi.id="5Us2NaO1RgFR" name="" aggregation="aggregate" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" type="1gMUZGxpPnQh" xmi.id="9UtaB83hiuHH" name="" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="67PpVyDwiTXo" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" type="6EW05LbGMOY8" xmi.id="x8ZZggvWTlik" name="" aggregation="aggregate" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" type="1gMUZGxpPnQh" xmi.id="0FoVZLE3he7P" name="" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="0vCsNBb09S7P" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" type="1gMUZGxpPnQh" xmi.id="VLa0sGHsVk4K" name="" aggregation="aggregate" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" type="6EW05LbGMOY8" xmi.id="YAWaWehZbUat" name="" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="gE1PTTX8jCOW" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="1gMUZGxpPnQh" xmi.id="WCvvruDSOzml" name="topic" aggregation="composite" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1..m" type="6EW05LbGMOY8" xmi.id="Z1vzAdWAUpaA" name="" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="HXt6zQeYMd1Q" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="false" visibility="public" isSpecification="false" type="6EW05LbGMOY8" xmi.id="a10kiQ6fmkvH" name="" aggregation="none" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" type="o6627heT5qM4" xmi.id="GPlLOgyh6LjQ" name="" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="smzuZrTK04J0" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="false" visibility="public" isSpecification="false" multiplicity="1..m" type="6EW05LbGMOY8" xmi.id="iVYcjQSmOIZ8" name="" aggregation="none" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="o6627heT5qM4" xmi.id="T85um9izbMTl" name="math_format" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="O2a2LSzH427W" name="iterable of Result" isAbstract="false"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="1gMUZGxpPnQh" xmi.id="fvxHnlqL4NZZ" name="" client="6EW05LbGMOY8"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="6bMAiKxftcnP" name="math_format" isAbstract="false"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="o6627heT5qM4" xmi.id="hENsGOTskIg6" name="" client="6EW05LbGMOY8"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="cZ8dsszVJgQS" name="dict of (string, float)" isAbstract="false"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="bUWixFoVWNoa" name="sequence of float" isAbstract="false"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="4b2dQ0x2dmpU" xmi.id="hgBuO89TkzbO" name="" client="6EW05LbGMOY8"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="S4yiqbVFd6NK" xmi.id="1o7YQVbxgZgV" name="" client="6EW05LbGMOY8"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="L5wnqwnbipsk" xmi.id="2Ojuli9eXkRs" name="" client="6EW05LbGMOY8"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="ze5MCX48bLX4" name="Path" isAbstract="false"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="fzV68th7UN3X" name="ParseResult" isAbstract="false"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="ydWWY77Z7IjU" xmi.id="vQPMuUrqSPMV" name="" client="6EW05LbGMOY8"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="ydWWY77Z7IjU" xmi.id="hxaezGPbzD1V" name="" client="1gMUZGxpPnQh"/>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="XvjhTtB8AWxG" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="6EW05LbGMOY8" xmi.id="yoyEi6OET4fo" name="query" aggregation="composite" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="0..m" type="cojesY1fJAk8" xmi.id="9DM3r8xQ3O4z" name="results" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="7Fv6zvvtX7Sf" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="6EW05LbGMOY8" xmi.id="M6axJsQokea6" name="query" aggregation="composite" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="0..m" type="cojesY1fJAk8" xmi.id="jUSP8mVk7gjO" name="results" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="htJUt0xqAs3g" name="dict of (string, double)" isAbstract="false"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="PHugkksgUauS" name="sequence of double" isAbstract="false"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="pVo1bm8rOh70" name="set of ScoreAggregationStrategy" isAbstract="false"/>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="TXlrNSD3KIJo" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="cojesY1fJAk8" xmi.id="Rz3OdOmzV95c" name="" aggregation="aggregate" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1..m" type="4b2dQ0x2dmpU" xmi.id="7ToMwoJ6Dghh" name="aggregations" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cojesY1fJAk8" xmi.id="KxmhIJziA0OQ" name="" client="4b2dQ0x2dmpU"/>
<UML:Generalization visibility="public" isSpecification="false" child="F4YG5DAn0wnS" namespace="Logical View" parent="cojesY1fJAk8" xmi.id="9HvJjfpAlHde" name="" discriminator=""/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="1gMUZGxpPnQh" xmi.id="YxosT4JjyXUO" name="" client="L5wnqwnbipsk"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="Jmaoc1ymHyD3" xmi.id="ox9Qq0LNMafm" name="" client="L5wnqwnbipsk"/>
<UML:Package isLeaf="false" isRoot="false" comment="This module defines data types for representing topics in the NTCIR-10 Math, NTCIR-11 Math-2, and NTCIR-12 MathIR format." visibility="public" isSpecification="false" namespace="Logical View" xmi.id="bowZifwT02E4" name="topic" isAbstract="false">
<UML:Namespace.ownedElement>
<UML:Class isLeaf="false" isRoot="false" comment="This class represents an NTCIR-10 Math, NTCIR-11 Math-2, and NTCIR-12 MathIR topic." visibility="public" isSpecification="false" namespace="bowZifwT02E4" xmi.id="1gMUZGxpPnQh" name="Topic" isAbstract="false">
<UML:Classifier.feature>
<UML:Attribute comment="The identifier of the topic as specified in the {http://ntcir-math.nii.ac.jp/}num element." visibility="public" isSpecification="false" type="Icfa9xxQSrS4" xmi.id="9UqzvOkdgPk9" name="name"/>
<UML:Attribute comment="One or more formulae from the topic as specified in the {http://www.w3.org/1998/Math/MathML}math elements." visibility="public" isSpecification="false" type="0kYPY6UanTEn" xmi.id="BvqYtqQTBDa7" name="formulae"/>
<UML:Attribute comment="One or more keywords from the topic as specified in the {http://ntcir-math.nii.ac.jp/}keyword elements." visibility="public" isSpecification="false" type="2TOVhh3e4HqO" xmi.id="lM4XevmEDv86" name="keywords"/>
<UML:Attribute comment="A map paragraph identifiers, and relevance judgements." visibility="public" isSpecification="false" type="iKA52KGwpIjx" xmi.id="CNXqEpug49Mg" name="judgements"/>
<UML:Operation isLeaf="false" isRoot="false" ownerScope="classifier" isQuery="false" visibility="public" isSpecification="false" xmi.id="aWgIco91oX2y" name="Topic" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="The identifier of the topic as specified in the {http://ntcir-math.nii.ac.jp/}num element." visibility="private" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="rM6RKLqPgr4v" name="name"/>
<UML:Parameter value="" comment="One or more formulae from the topic as specified in the {http://www.w3.org/1998/Math/MathML}math elements." visibility="private" isSpecification="false" type="zxCmvjoRDVEQ" xmi.id="BVaWvCiFArfm" name="formulae"/>
<UML:Parameter value="" comment="One or more keywords from the topic as specified in the {http://ntcir-math.nii.ac.jp/}keyword elements." visibility="private" isSpecification="false" type="2TOVhh3e4HqO" xmi.id="31Y03njP5mgV" name="keywords"/>
<UML:Parameter value="" comment="A map paragraph identifiers, and relevance judgements." visibility="private" isSpecification="false" type="iKA52KGwpIjx" xmi.id="BaJikch9hvyM" name="judgements"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation isLeaf="false" isRoot="false" ownerScope="classifier" isQuery="false" comment="Extracts a topic from a {http://ntcir-math.nii.ac.jp/}topic XML element." visibility="public" isSpecification="false" xmi.id="Ua6m3pw2NCx3" name="from_element" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" type="1gMUZGxpPnQh" xmi.id="LJr7PkaJyidr"/>
<UML:Parameter value="" comment="A {http://ntcir-math.nii.ac.jp/}topic XML element." visibility="private" isSpecification="false" type="8hYVGvPepo9r" xmi.id="FDVUAItNOVIV" name="topic_tree"/>
<UML:Parameter value="" comment="A map between NTCIR-10 Math, NTCIR-11 Math-2, and NTCIR-12 MathIR judgement identifiers, paragraph identifiers, and relevance judgements." visibility="private" isSpecification="false" type="CXaQWweS9NRE" xmi.id="WrEvgy5EotQ8" name="judgements"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation isLeaf="false" isRoot="false" ownerScope="classifier" isQuery="false" comment="Reads topics in the NTCIR-10 Math, NTCIR-11 Math-2, and NTCIR-12 MathIR format from an XML file." visibility="public" isSpecification="false" xmi.id="cVc5Ilj6lx8D" name="from_file" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="An input XML file containing topics." visibility="private" isSpecification="false" type="NTfznvloa2wU" xmi.id="y7j714cyI1pc" name="input_file"/>
<UML:Parameter value="" comment="A map between NTCIR-10 Math, NTCIR-11 Math-2, and NTCIR-12 MathIR judgement identifiers, paragraph identifiers, and relevance judgements." visibility="private" isSpecification="false" type="CXaQWweS9NRE" xmi.id="6eMeBwuElja5" name="judgements"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Produces queries from the topic, queries a WebMIaS index, and returns the queries along with the XML responses, and query results." visibility="public" isSpecification="false" xmi.id="q2vigNubxBDs" name="get_queries" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="The format in which the mathematical formulae will be represented in a query." visibility="private" isSpecification="false" type="o6627heT5qM4" xmi.id="b9x7sJa4zgPy" name="math_format"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" comment="This class represents a formula in a NTCIR-10 Math, NTCIR-11 Math-2, and NTCIR-12 MathIR topic." visibility="public" isSpecification="false" namespace="bowZifwT02E4" xmi.id="Jmaoc1ymHyD3" name="Formula" isAbstract="false">
<UML:Classifier.feature>
<UML:Attribute comment="The text of the TeX representation of the formula.
" visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="RymWaQSGZeOc" name="tex_text"/>
<UML:Attribute comment="The text of the {http://www.w3.org/1998/Math/MathML}math element containing a Presentation MathML representation of the formula." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="y4w7fMeJdUCv" name="pmath_text"/>
<UML:Attribute comment="The text of the {http://www.w3.org/1998/Math/MathML}math element containing a Content MathML representation of the formula." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="Cx3pdZoqkM7R" name="cmath_text"/>
<UML:Attribute ownerScope="classifier" visibility="public" isSpecification="false" type="2720737f2d5D" xmi.id="0HW43x1Z1XBb" name="math_formats"/>
<UML:Operation isLeaf="false" isRoot="false" ownerScope="classifier" isQuery="false" visibility="public" isSpecification="false" xmi.id="5dNbSeTTZ7yf" name="Formula" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="The TeX representation of the formula." visibility="private" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="SkKgxfGuH3y3" name="tex"/>
<UML:Parameter value="" comment="A {http://www.w3.org/1998/Math/MathML}math element containing a Presentation MathML representation of the formula." visibility="private" isSpecification="false" type="8hYVGvPepo9r" xmi.id="U5C50MjuqlWU" name="pmath"/>
<UML:Parameter value="" comment="A {http://www.w3.org/1998/Math/MathML}math element containing a Content MathML representation of the formula." visibility="private" isSpecification="false" type="8hYVGvPepo9r" xmi.id="zkUy4YoL3UB5" name="cmath"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation isLeaf="false" isRoot="false" ownerScope="classifier" isQuery="false" comment="Extracts a formula from a {http://ntcir-math.nii.ac.jp/}formula XML element." visibility="public" isSpecification="false" xmi.id="sM6Mjw0qPb7w" name="from_element" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" type="Jmaoc1ymHyD3" xmi.id="NI6IXbAlMuQi"/>
<UML:Parameter value="" comment="A {http://ntcir-math.nii.ac.jp/}formula XML element." visibility="private" isSpecification="false" type="8hYVGvPepo9r" xmi.id="VhWUBi4FrcT8" name="formula_tree"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" stereotype="37JEobTwuFkU" comment="This class represents the popular math authoring language of TeX." visibility="public" isSpecification="false" namespace="bowZifwT02E4" xmi.id="UgdNpEKELGcw" name="TeX" isAbstract="false">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="eOGHXUHuWrPQ"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Attribute initialValue=""TeX"" comment="A unique identifier." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="scEoqcuHPHm9" name="identifier"/>
<UML:Attribute initialValue=""The TeX language by professor Knuth"" comment="A human-readable text description.
" visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="12VRlzoxIUrB" name="description"/>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Returns a text representation of a mathematical formula." visibility="public" isSpecification="false" xmi.id="Rco0p5UQT6a6" name="encode" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" type="BZ26rvH8Ee1x" xmi.id="O1fsWbpYRcMB"/>
<UML:Parameter value="" comment="A mathematical formula that will be represented in this format." visibility="private" isSpecification="false" type="Jmaoc1ymHyD3" xmi.id="gicaVBZD6XTR" name="formula"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" stereotype="37JEobTwuFkU" comment="This class represents the PResentation MathML XML language." visibility="public" isSpecification="false" namespace="bowZifwT02E4" xmi.id="SB6OQvCndoBr" name="PMath" isAbstract="false">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="lQsVqd4n0DpY"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Attribute initialValue=""PMath"" comment="A unique identifier." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="UmZPqBbrYr99" name="identifier"/>
<UML:Attribute initialValue=""Presentation MathML XML language"" comment="A human-readable text description.
" visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="HvB6kgqvcHSs" name="description"/>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Returns a text representation of a mathematical formula." visibility="public" isSpecification="false" xmi.id="U2o6Ov0o8hAv" name="encode" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="A mathematical formula that will be represented in this format." visibility="private" isSpecification="false" type="Jmaoc1ymHyD3" xmi.id="hGcZVrLWqxlp" name="formula"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" stereotype="37JEobTwuFkU" comment="This class represents the Content MathML XML language." visibility="public" isSpecification="false" namespace="bowZifwT02E4" xmi.id="OF72e636eAW7" name="CMath" isAbstract="false">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="A9PTsTX4Dc6T"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Attribute initialValue=""CMath"" comment="A unique identifier." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="DvweOL09i6DL" name="identifier"/>
<UML:Attribute initialValue=""Content MathML XML language"" comment="A human-readable text description.
" visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="lJJb8YMyjZfy" name="description"/>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Returns a text representation of a mathematical formula." visibility="public" isSpecification="false" xmi.id="YboM32mrUARY" name="encode" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="A mathematical formula that will be represented in this format." visibility="private" isSpecification="false" type="Jmaoc1ymHyD3" xmi.id="aY2grzt1S4xK" name="formula"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" stereotype="37JEobTwuFkU" comment="This class represents the combined Presentation, and Content MathML XML language." visibility="public" isSpecification="false" namespace="bowZifwT02E4" xmi.id="fi38S1qDbrHT" name="PCMath" isAbstract="false">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="QtViSgoGxwEx"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Attribute initialValue=""PCMath"" comment="A unique identifier." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="Ag9jouq67hGx" name="identifier"/>
<UML:Attribute initialValue=""Combined Presentation and Content MathML XML language"" comment="A human-readable text description.
" visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="IdIcTKu9zCv3" name="description"/>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Returns a text representation of a mathematical formula." visibility="public" isSpecification="false" xmi.id="uvmTb2N3VgZT" name="encode" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="A mathematical formula that will be represented in this format." visibility="private" isSpecification="false" type="Jmaoc1ymHyD3" xmi.id="pv6no9KShj3o" name="formula"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
</UML:Namespace.ownedElement>
</UML:Package>
<UML:Package isLeaf="false" isRoot="false" comment="This module defines abstract data types." visibility="public" isSpecification="false" namespace="Logical View" xmi.id="FYOvVmw2cjTb" name="abstract" isAbstract="false">
<UML:Namespace.ownedElement>
<UML:Class isLeaf="false" isRoot="false" comment="This class represents an entity with a unique identifier, and a human-readable text description." visibility="public" isSpecification="false" namespace="FYOvVmw2cjTb" xmi.id="546tooNL0Q7Y" name="NamedEntity" isAbstract="true"/>
<UML:Class isLeaf="false" isRoot="false" comment="This class represents a query expansion strategy for extracting queries out of an NTCIR-10 Math, NTCIR-11 Math-2, and NTCIR-12 MathIR topic." visibility="public" isSpecification="false" namespace="FYOvVmw2cjTb" xmi.id="L5wnqwnbipsk" name="QueryExpansionStrategy" isAbstract="true">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="tfNGJ885F38C"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Produces triples of formulae, keywords, and stripe widths from a NTCIR-10 Math, NTCIR-11 Math-2, and NTCIR-12 MathIR topic." visibility="public" isSpecification="false" xmi.id="pZorSJEasT3M" name="produce_queries" isAbstract="true">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="A topic that will serve as the source of the triples." visibility="private" isSpecification="false" type="1gMUZGxpPnQh" xmi.id="8mOrgdEmBSM1" name="topic"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" comment="This class represents a strategy for aggregating a real score, and a probability of relevance into a single aggregate score." visibility="public" isSpecification="false" namespace="FYOvVmw2cjTb" xmi.id="4b2dQ0x2dmpU" name="ScoreAggregationStrategy" isAbstract="true">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="Ooo7qPtQbEb0"/>
<UML:Generalization xmi.idref="8kfLsMWfRoBU"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Aggregates a score assigned to a paragraph in a result by MIaS, and an estimated probability that the paragraph is relevant by the NTCIR Math Density Estimator package." visibility="public" isSpecification="false" xmi.id="pofA1N3vufGD" name="aggregate_score" isAbstract="true">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" type="6hdYN41IHr4Y" xmi.id="lQhewuXx2wZ9"/>
<UML:Parameter value="" comment="A result." visibility="private" isSpecification="false" type="VWWb1TCOI804" xmi.id="A0Oqilsn1wKr" name="MIaSResult"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" comment="This class represents a format in which mathematical formulae are represented." visibility="public" isSpecification="false" namespace="FYOvVmw2cjTb" xmi.id="o6627heT5qM4" name="MathFormat" isAbstract="true">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="tgQ49jVr87C8"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Returns a text representation of a mathematical formula.
" visibility="public" isSpecification="false" xmi.id="lwTN4mnaLggE" name="encode" isAbstract="true">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" type="BZ26rvH8Ee1x" xmi.id="D7C7kHjysOcD"/>
<UML:Parameter value="" comment="A mathematical formula that will be represented in this format." visibility="private" isSpecification="false" type="Jmaoc1ymHyD3" xmi.id="JGdQq7YhrNCo" name="formula"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" comment="This class represents the result of a query." visibility="public" isSpecification="false" namespace="FYOvVmw2cjTb" xmi.id="4ytVgzfqpNED" name="Result" isAbstract="true">
<UML:Classifier.feature>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Aggregates the MIaS score of the result, and the estimated probability of relevance of the paragraph in the result using the aggregation strategy of the query that produced this result." visibility="public" isSpecification="false" xmi.id="KVl890WpFdVk" name="aggregate_score" isAbstract="true">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" type="6hdYN41IHr4Y" xmi.id="NI2sWof5cmGF"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" comment="This class represents a strategy for evaluating result lists using relevance judgements." visibility="public" isSpecification="false" namespace="FYOvVmw2cjTb" xmi.id="sbsXdzb87I0p" name="EvaluationStrategy" isAbstract="true">
<UML:Classifier.feature>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Evaluates a result list." visibility="public" isSpecification="false" xmi.id="zwV0lvPpzKtd" name="evaluate" isAbstract="true">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" type="6hdYN41IHr4Y" xmi.id="BEHqOJvvOPu0"/>
<UML:Parameter value="" comment="The result list to be evaluated." visibility="private" isSpecification="false" type="jyEyXDrygsjD" xmi.id="2hnGlmOVvH4h" name="results"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="FYOvVmw2cjTb" xmi.id="oqIExlKEMpso" name="WeightedScoreAggregationStrategy" isAbstract="true">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="WIcoGSh8ErXW"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Attribute comment="The weight of a probability estimate. The weight of a score is 1 - alpha." visibility="public" isSpecification="false" type="6hdYN41IHr4Y" xmi.id="NNP2XKTgH83o" name="alpha"/>
</UML:Classifier.feature>
</UML:Class>
</UML:Namespace.ownedElement>
</UML:Package>
<UML:Package isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="OPog7dVhzDEx" name="webmias" isAbstract="false">
<UML:Namespace.ownedElement>
<UML:Class isLeaf="false" isRoot="false" comment="This class represents an index of a deployed WebMIaS Java Servlet." visibility="public" isSpecification="false" namespace="OPog7dVhzDEx" xmi.id="ydWWY77Z7IjU" name="WebMIaSIndex" isAbstract="false">
<UML:Classifier.feature>
<UML:Attribute comment="The URL at which a WebMIaS Java Servlet has been deployed." visibility="public" isSpecification="false" type="fzV68th7UN3X" xmi.id="9zkjpl8vQL0g" name="url"/>
<UML:Attribute initialValue="0" comment="The numeric identifier of the WebMIaS index that corresponds to the dataset." visibility="public" isSpecification="false" type="s0WBrvGHldLI" xmi.id="TaTi8tGfHS7q" name="index_number"/>
<UML:Operation isLeaf="false" isRoot="false" ownerScope="classifier" isQuery="false" visibility="public" isSpecification="false" xmi.id="P0me119SFne7" name="WebMIaSIndex" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="The URL at which a WebMIaS Java Servlet has been deployed." visibility="private" isSpecification="false" type="fzV68th7UN3X" xmi.id="zoIZu11eukn4" name="url"/>
<UML:Parameter value="0" comment="The numeric identifier of the WebMIaS index that corresponds to the dataset." visibility="private" isSpecification="false" type="s0WBrvGHldLI" xmi.id="NffZNHArChbf" name="index_number"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Queries the WebMIaS index and returns a response XML document." visibility="public" isSpecification="false" xmi.id="8ghnumXJ9J5u" name="query" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" type="8hYVGvPepo9r" xmi.id="sADEkUSobhhh"/>
<UML:Parameter value="" comment="The query." visibility="private" isSpecification="false" type="6EW05LbGMOY8" xmi.id="88krZuEHvSbw" name="query"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
</UML:Namespace.ownedElement>
</UML:Package>
<UML:Package isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="OLi8f5jOJwYT" name="query" isAbstract="false">
<UML:Namespace.ownedElement>
<UML:Class isLeaf="false" isRoot="false" stereotype="37JEobTwuFkU" comment="This class represents a strategy for aggregating a score, and a probability estimate into an aggregate score. The aggregate score corresponds to the MIaS score, the probability estimate is discarded." visibility="public" isSpecification="false" namespace="OLi8f5jOJwYT" xmi.id="KGURbznxPmsi" name="MIaSScore" isAbstract="false">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="ClfqPf1S2yu6"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Attribute initialValue=""orig"" comment="A unique identifier." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="C7v5TXx8fQug" name="identifier"/>
<UML:Attribute initialValue=""The original MIaS score with the probability estimate discarded"" comment="A human-readable text description." visibility="private" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="m4W27ul6kGPo" name="description"/>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Aggregates a score assigned to a paragraph in a result by MIaS, and an estimated probability that the paragraph is relevant by the NTCIR Math Density Estimator package." visibility="public" isSpecification="false" xmi.id="GfTnYeRFiHI9" name="aggregate_score" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" type="6hdYN41IHr4Y" xmi.id="S11SDPs5mMu8"/>
<UML:Parameter value="" comment="A result." visibility="private" isSpecification="false" type="cojesY1fJAk8" xmi.id="dOXyf0vYbWQh" name="result"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" comment="This class represents a strategy for aggregating a score, and a probability estimate into the common logarithm of their weighted harmonic mean." visibility="public" isSpecification="false" namespace="OLi8f5jOJwYT" xmi.id="BBVygmAAJDYA" name="HarmonicMean" isAbstract="false">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="CcFPJrVSVqH9"/>
<UML:Generalization xmi.idref="q7w6cLndALCb"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Attribute comment="A unique identifier." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="XiOhU0VGgVos" name="identifier"/>
<UML:Attribute comment="A human-readable text description." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="6xCr6OQtGF9X" name="description"/>
<UML:Attribute comment="The weight of a probability estimate (the weight is in the range [0; 1]). The weight of a score is 1 - alpha." visibility="public" isSpecification="false" type="6hdYN41IHr4Y" xmi.id="VsmSmGSiUcO0" name="alpha"/>
<UML:Operation isLeaf="false" isRoot="false" ownerScope="classifier" isQuery="false" visibility="public" isSpecification="false" xmi.id="WbkrksVcVFX4" name="HarmonicMean" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="The weight of a probability estimate (the weight is in the range [0; 1]). The weight of a score is 1 - alpha." visibility="private" isSpecification="false" type="6hdYN41IHr4Y" xmi.id="OeqrEzEUi0vw" name="alpha"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Aggregates a score assigned to a paragraph in a result by MIaS, and an estimated probability that the paragraph is relevant by the NTCIR Math Density Estimator package." visibility="public" isSpecification="false" xmi.id="fyqXM24rK1z5" name="aggregate_score" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" type="6hdYN41IHr4Y" xmi.id=""/>
<UML:Parameter value="" comment="A result." visibility="private" isSpecification="false" type="cojesY1fJAk8" xmi.id="ef7IGgXd0sKf" name="result"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" comment="This class represents a strategy for aggregating a score, and a probability estimate into the common logarithm of their geometric mean." visibility="public" isSpecification="false" namespace="OLi8f5jOJwYT" xmi.id="milrlksfeuXz" name="GeometricMean" isAbstract="false">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="DMUy1IScxYYU"/>
<UML:Generalization xmi.idref="DNK2zoWyWrOx"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Attribute comment="A unique identifier" visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="S8e5SevMbKeM" name="identifier"/>
<UML:Attribute comment="A human-readable text description." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="IU6Yy30Lb6YI" name="description"/>
<UML:Attribute initialValue="0.5" comment="The weight of a probability estimate (the weight is in the range [0; 1]). The weight of a score is 1 - alpha." visibility="public" isSpecification="false" type="6hdYN41IHr4Y" xmi.id="ckaKYTp6Qy1X" name="alpha"/>
<UML:Operation isLeaf="false" isRoot="false" ownerScope="classifier" isQuery="false" visibility="public" isSpecification="false" xmi.id="sEnxPk1FR0BW" name="GeometricMean" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="The weight of a probability estimate (the weight is in the range [0; 1]). The weight of a score is 1 - alpha." visibility="private" isSpecification="false" type="6hdYN41IHr4Y" xmi.id="9XC8AQO0ZB8e" name="alpha"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Aggregates a score assigned to a paragraph in a result by MIaS, and an estimated probability that the paragraph is relevant by the NTCIR Math Density Estimator package." visibility="public" isSpecification="false" xmi.id="zChwJd43GYAF" name="aggregate_score" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" type="6hdYN41IHr4Y" xmi.id="MGhqgM13CPN2"/>
<UML:Parameter value="" comment="A result." visibility="private" isSpecification="false" type="cojesY1fJAk8" xmi.id="as9rACKoqost" name="result"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" comment="This class represents an artificially created result." visibility="public" isSpecification="false" namespace="OLi8f5jOJwYT" xmi.id="F4YG5DAn0wnS" name="ArtificialResult" isAbstract="false">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="9HvJjfpAlHde"/>
<UML:Generalization xmi.idref="8lAxQgshNokZ"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Attribute comment="The identifier of the paragraph in the result." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="z0XBoCkluICc" name="identifier"/>
<UML:Attribute comment="The artificial score of the result." visibility="public" isSpecification="false" type="6hdYN41IHr4Y" xmi.id="zR49PDD1320o" name="score"/>
<UML:Operation isLeaf="false" isRoot="false" ownerScope="classifier" isQuery="false" visibility="public" isSpecification="false" xmi.id="Z8JUWaMnocvl" name="ArtificialResult" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="The identifier of the paragraph in the result." visibility="private" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="W3oov5BjRusz" name="identifier"/>
<UML:Parameter value="" comment="The artificial score of the result." visibility="private" isSpecification="false" type="6hdYN41IHr4Y" xmi.id="gBISLP0THs4M" name="score"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Aggregates the MIaS score of the result, and the estimated probability of relevance of the paragraph in the result using the aggregation strategy of the query that produced this result." visibility="public" isSpecification="false" xmi.id="G9v763UxGWS0" name="aggregate_score" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" type="6hdYN41IHr4Y" xmi.id="3ULq0qeWrtlz"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" comment="This class represents an actual result of a query to a WebMIaS Java Servlet." visibility="public" isSpecification="false" namespace="OLi8f5jOJwYT" xmi.id="cojesY1fJAk8" name="MIaSResult" isAbstract="false">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="W2R0NJH7WSnP"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Attribute comment="The query that produced the result." visibility="public" isSpecification="false" type="PkYuFEMbgbow" xmi.id="IIYSppUZFR2l" name="executed_query"/>
<UML:Attribute comment="The identifier of the paragraph in the result." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="1RuCMgoJw84q" name="identifier"/>
<UML:Attribute comment="The score of the result." visibility="public" isSpecification="false" type="6hdYN41IHr4Y" xmi.id="tqO5C6ArUCnk" name="score"/>
<UML:Attribute comment="The estimated probability of relevance of the paragraph in the result." visibility="public" isSpecification="false" type="6hdYN41IHr4Y" xmi.id="GxDZNlTHCPlg" name="p_relevant"/>
<UML:Attribute comment="Whether the result is considered relevant according to relevance judgements." visibility="public" isSpecification="false" type="Jvh6lbIHHKOV" xmi.id="2HzGE7YZsNaI" name="relevant"/>
<UML:Attribute ownerScope="classifier" visibility="public" isSpecification="false" type="pVo1bm8rOh70" xmi.id="KyN5IKZEXHcp" name="aggregations"/>
<UML:Operation isLeaf="false" isRoot="false" ownerScope="classifier" isQuery="false" visibility="public" isSpecification="false" xmi.id="OWdVuAIKQfsB" name="MIaSResult" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="The query that produced the result." visibility="private" isSpecification="false" type="PkYuFEMbgbow" xmi.id="fNo9z7roJFrZ" name="executed_query"/>
<UML:Parameter value="" comment="The identifier of the paragraph in the result." visibility="private" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="yAzHxJGwEBxp" name="identifier"/>
<UML:Parameter value="" comment="The score of the result." visibility="private" isSpecification="false" type="6hdYN41IHr4Y" xmi.id="1uWVFs8zyK6O" name="score"/>
<UML:Parameter value="" comment="The estimated probability of relevance of the paragraph in the result." visibility="private" isSpecification="false" type="6hdYN41IHr4Y" xmi.id="M9bXkq65TQxD" name="p_relevant"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation isLeaf="false" isRoot="false" ownerScope="classifier" isQuery="false" comment="Extracts a result from a result XML element in a WebMIaS response." visibility="public" isSpecification="false" xmi.id="jkeGs5V6Ggp3" name="from_element" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" type="cojesY1fJAk8" xmi.id="bzWTltqEQOMf"/>
<UML:Parameter value="" comment="The query that produced the result." visibility="private" isSpecification="false" type="PkYuFEMbgbow" xmi.id="2KkMNw3Uf5aW" name="executed_query"/>
<UML:Parameter value="" comment="A result XML element." visibility="private" isSpecification="false" type="8hYVGvPepo9r" xmi.id="smUu6TSlRAPC" name="result_tree"/>
<UML:Parameter value="" comment="A map from paragraph identifiers to estimated positions of paragraphs in their parent documents. The positions are in the range [0; 1]." visibility="private" isSpecification="false" type="htJUt0xqAs3g" xmi.id="AJ9ZOGVuUGXR" name="positions"/>
<UML:Parameter value="" comment="Estimates of P(relevant | position) in the form of a histogram." visibility="private" isSpecification="false" type="PHugkksgUauS" xmi.id="VyV6aQzcYyC4" name="estimates"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Aggregates the MIaS score of the result, and the estimated probability of relevance of the paragraph in the result using the aggregation strategy of the query that produced this result." visibility="public" isSpecification="false" xmi.id="BRUn56mAEjMF" name="aggregate_score" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" type="6hdYN41IHr4Y" xmi.id="vrCzN9YZg21O"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" comment="This class represents a query extracted from a NTCIR-10 Math, NTCIR-11 Math-2, and NTCIR-12 MathIR topic." visibility="public" isSpecification="false" namespace="OLi8f5jOJwYT" xmi.id="6EW05LbGMOY8" name="Query" isAbstract="false">
<UML:Classifier.feature>
<UML:Attribute comment="The topic that served as the source of the query." visibility="public" isSpecification="false" type="1gMUZGxpPnQh" xmi.id="rJmrTgGFMexP" name="topic"/>
<UML:Attribute comment="The text content of the query." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="F2MOR56TS1TY" name="payload"/>
<UML:Attribute comment="The format in which the mathematical formulae are represented in the query." visibility="public" isSpecification="false" type="o6627heT5qM4" xmi.id="7zZQmWbmrdEU" name="math_format"/>
<UML:Attribute comment="The number of the query among all queries extracted from the topic." visibility="public" isSpecification="false" type="s0WBrvGHldLI" xmi.id="On5nFCFRzQzN" name="query_number"/>
<UML:Attribute comment="The stripe width, i.e. number of results this query will contribute to the final result list each time the query gets its turn." visibility="public" isSpecification="false" type="s0WBrvGHldLI" xmi.id="AdJ6mBJqetyB" name="stripe_width"/>
<UML:Operation isLeaf="false" isRoot="false" ownerScope="classifier" isQuery="false" visibility="public" isSpecification="false" xmi.id="BsKszwVuRQH1" name="Query" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="The topic that will serve as the source of the query." visibility="private" isSpecification="false" type="1gMUZGxpPnQh" xmi.id="kiATbiOwvkcr" name="topic"/>
<UML:Parameter value="" comment="The format in which the mathematical formulae are represented in the query." visibility="private" isSpecification="false" type="6bMAiKxftcnP" xmi.id="xLb5HevB4fwQ" name="MathFormat"/>
<UML:Parameter value="" comment="The text content of the query." visibility="private" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="fashNiIMMlU7" name="payload"/>
<UML:Parameter value="" comment="The number of the query among all queries extracted from the topic." visibility="private" isSpecification="false" type="s0WBrvGHldLI" xmi.id="n3kHjme5G2WC" name="query_number"/>
<UML:Parameter value="" comment="The number of results this query will contribute to the final result list each time the query gets its turn." visibility="private" isSpecification="false" type="s0WBrvGHldLI" xmi.id="fVfdyMYNNB22" name="stripe_width"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation isLeaf="false" isRoot="false" ownerScope="classifier" isQuery="false" comment="Produces queries from a NTCIR-10 Math, NTCIR-11 Math-2, and NTCIR-12 MathIR topic." visibility="public" isSpecification="false" xmi.id="Ho7qTT4jDHAP" name="from_topic" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="A topic that will serve as the source of the queries." visibility="private" isSpecification="false" type="1gMUZGxpPnQh" xmi.id="zytvlfxKaT0h" name="topic"/>
<UML:Parameter value="" comment="The format in which the mathematical formulae will be represented in a query." visibility="private" isSpecification="false" type="o6627heT5qM4" xmi.id="6NGBmph8oub8" name="math_format"/>
<UML:Parameter value="" comment="A query expansion strategy that produces triples of formulae, keywords, and stripe widths." visibility="private" isSpecification="false" type="L5wnqwnbipsk" xmi.id="bfNJb4Z9TMTX" name="query_expansion"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Stores the text content of the query." visibility="public" isSpecification="false" xmi.id="J3CbHquqSzVJ" name="save" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="The path to the directory, where the output files will be stored." visibility="private" isSpecification="false" type="ze5MCX48bLX4" xmi.id="QsrrePjCRD2p" name="output_directory"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" stereotype="37JEobTwuFkU" comment="This class represents the Leave Rightmost Out (LRO) query expansion strategy (Růžička et al., 2014)." visibility="public" isSpecification="false" namespace="OLi8f5jOJwYT" xmi.id="S4yiqbVFd6NK" name="LeaveRightmostOut" isAbstract="false">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="JqzbNyX8XJ3i"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Attribute initialValue=""LRO"" comment="A unique identifier." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="YChc8kbx31BL" name="identifier"/>
<UML:Attribute initialValue=""Leave Rightmost Out strategy (Růžička et al. 2014)"" comment="A human-readable text description." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="3V2ItjmfAAjk" name="description"/>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="This class represents a query expansion strategy for extracting queries out of an NTCIR-10 Math, NTCIR-11 Math-2, and NTCIR-12 MathIR topic." visibility="public" isSpecification="false" xmi.id="biHzaSAgxWXE" name="produce_queries" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="A topic that will serve as the source of the triples." visibility="private" isSpecification="false" type="1gMUZGxpPnQh" xmi.id="hN52fbrgrF5w" name="topic"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="OLi8f5jOJwYT" xmi.id="QBj9hlWSQGHK" name="ArithmeticMean" isAbstract="false">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="AGm50YO4Y0Yb"/>
<UML:Generalization xmi.idref="EOSSH5UmLsoj"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Attribute comment="A unique identifier." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="Y6f2RhcftVIF" name="identifier"/>
<UML:Attribute comment="A human-readable text description." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="AqSuIIiCqdGN" name="description"/>
<UML:Attribute initialValue="0.5" comment="The weight of a probability estimate (the weight is in the range [0; 1]). The weight of a score is 1 - alpha." visibility="public" isSpecification="false" type="6hdYN41IHr4Y" xmi.id="OAgbEBWlUSxB" name="alpha"/>
<UML:Operation isLeaf="false" isRoot="false" ownerScope="classifier" isQuery="false" visibility="public" isSpecification="false" xmi.id="ycBlKYL61AK4" name="ArithmeticMean" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="The weight of a probability estimate (the weight is in the range [0; 1]). The weight of a score is 1 - alpha." visibility="private" isSpecification="false" type="6hdYN41IHr4Y" xmi.id="yOZ435eTHucd" name="alpha"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Aggregates a score assigned to a paragraph in a result by MIaS, and an estimated probability that the paragraph is relevant by the NTCIR Math Density Estimator package." visibility="public" isSpecification="false" xmi.id="B0bucUy0aKCz" name="aggregate_score" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" type="6hdYN41IHr4Y" xmi.id="Krj3QcYH8b7T"/>
<UML:Parameter value="" comment="A result." visibility="private" isSpecification="false" type="cojesY1fJAk8" xmi.id="fyS54y1m8d5e" name="result"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" comment="This class represents a query after it has been executed, and the query results processed." visibility="public" isSpecification="false" namespace="OLi8f5jOJwYT" xmi.id="ZY8KlJrU3Lbp" name="ExecutedProcessedQuery" isAbstract="false">
<UML:Classifier.feature>
<UML:Attribute comment="The executed query whose results have been processed." visibility="public" isSpecification="false" type="rzCAAwOU4vBE" xmi.id="Yhk6z5S9x6U1" name="executed_query"/>
<UML:Attribute comment="The query results." visibility="public" isSpecification="false" type="OJGkxIWbC3ea" xmi.id="RZOwbyiE3Rsb" name="results"/>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Changes the score aggregation strategy, and sorts query results according to the aggregated scores for the duration of the context." visibility="public" isSpecification="false" xmi.id="IgX1LPEgf3c1" name="use_aggregation" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="The score aggregation strategy that will be used to compute the aggregate score of the query results for the duration of the context." visibility="private" isSpecification="false" type="4b2dQ0x2dmpU" xmi.id="dOeniM03Z1Ck" name="aggregation"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation isLeaf="false" isRoot="false" ownerScope="classifier" isQuery="false" visibility="public" isSpecification="false" xmi.id="INDBkkfAqbDT" name="ExecutedProcessedQuery" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="The executed query whose results have been processed." visibility="private" isSpecification="false" type="rzCAAwOU4vBE" xmi.id="9TIrMaM0oGd7" name="executed_query"/>
<UML:Parameter value="" comment="The query results." visibility="private" isSpecification="false" type="yOuEvDe6YNyB" xmi.id="MlPMy1zH5KiF" name="results"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Constructs results from XML elements in a WebMIaS response." visibility="public" isSpecification="false" xmi.id="Na8vBJ1qJJ5X" name="from_elements" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="The executed query with the WebMIaS response." visibility="private" isSpecification="false" type="PkYuFEMbgbow" xmi.id="aFLYrtQJEYVW" name="executed_query"/>
<UML:Parameter value="" comment="A map from paragraph identifiers to estimated positions of paragraphs in their parent documents. The positions are in the range [0; 1]." visibility="private" isSpecification="false" type="htJUt0xqAs3g" xmi.id="aoYze4Igp7MT" name="positions"/>
<UML:Parameter value="" comment="Estimates of P(relevant | position) in the form of a histogram." visibility="private" isSpecification="false" type="PHugkksgUauS" xmi.id="my1OgCycf5r7" name="estimates"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Stores the query results as files." visibility="public" isSpecification="false" xmi.id="lupmFkdM9Se4" name="save" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="The path to the directory, where the output files will be stored." visibility="private" isSpecification="false" type="ze5MCX48bLX4" xmi.id="a0V8XzBv41tM" name="output_directory"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" comment="This class represents a query after it has been executed." visibility="public" isSpecification="false" namespace="OLi8f5jOJwYT" xmi.id="PkYuFEMbgbow" name="ExecutedQuery" isAbstract="false">
<UML:Classifier.feature>
<UML:Attribute comment="The query that has been executed." visibility="public" isSpecification="false" type="fQMNTPT6JKFf" xmi.id="v3qGuepJNlSH" name="query"/>
<UML:Attribute comment="The text of the WebMIaS response." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="dErpFpPUBcFt" name="response_text"/>
<UML:Attribute comment="The score aggregation strategy that will be used to compute the aggregate score of the query results. By default, this corresponds to MIaSScore, i.e. no score aggregation will be performed. Temporarily change this attribute by using the use_aggregation context manager method." visibility="public" isSpecification="false" type="4b2dQ0x2dmpU" xmi.id="MUBRLlKDpnmt" name="aggregation"/>
<UML:Operation isLeaf="false" isRoot="false" ownerScope="classifier" isQuery="false" visibility="public" isSpecification="false" xmi.id="3NhMTc4NF5YU" name="ExecutedQuery" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="The query that has been executed." visibility="private" isSpecification="false" type="fQMNTPT6JKFf" xmi.id="ckXiKURpwwmu" name="query"/>
<UML:Parameter value="" comment="The text of the WebMIaS response." visibility="private" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="HLklWpvrVUNg" name="response_text"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation isLeaf="false" isRoot="false" ownerScope="classifier" isQuery="false" comment="Retrieves a query response from a deployed WebMIaS Java Servlet." visibility="public" isSpecification="false" xmi.id="ws8uS5X6TMVf" name="from_webmias" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="That query that will be executed." visibility="private" isSpecification="false" type="fQMNTPT6JKFf" xmi.id="uojt5sFrr59L" name="query"/>
<UML:Parameter value="" comment="The index of a deployed WebMIaS Java Servlet." visibility="private" isSpecification="false" type="ydWWY77Z7IjU" xmi.id="Byqj4Y2ibL4c" name="webmias"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Stores the WebMIaS response to the query." visibility="public" isSpecification="false" xmi.id="bclooKNeMpFz" name="save" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="The path to the directory, where the output files will be stored." visibility="private" isSpecification="false" type="ze5MCX48bLX4" xmi.id="r6GQ8TDxfnRC" name="output_directory"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" stereotype="37JEobTwuFkU" visibility="public" isSpecification="false" namespace="OLi8f5jOJwYT" xmi.id="cXSGw7qUu24V" name="WorstScore" isAbstract="false">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="WzdDDc3jagqP"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Attribute initialValue=""worst"" comment="A unique identifier." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="lB2YeQ49pyjh" name="identifier"/>
<UML:Attribute initialValue=""The best possible score that uses relevance judgements"" comment="A human-readable text description." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="wbknIDXlzXZ7" name="description"/>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Aggregates a score assigned to a paragraph in a result by MIaS, and an estimated probability that the paragraph is relevant by the NTCIR Math Density Estimator package." visibility="public" isSpecification="false" xmi.id="j33wFI3EW7Dn" name="aggregate_score" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" type="6hdYN41IHr4Y" xmi.id="qzVVgg5YGtdO"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" stereotype="37JEobTwuFkU" comment="This class represents a strategy assigning the best possible score to a MIaS result. The score is either infinity, negative infinity, or zero depending on whether the result is relevant, non-relevant, or non-judged according to relevance judgements." visibility="public" isSpecification="false" namespace="OLi8f5jOJwYT" xmi.id="6mEf1qKgxTDS" name="BestScore" isAbstract="false">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="ftQomO0xePZe"/>
<UML:Generalization xmi.idref="PBBmUirSALpx"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Attribute initialValue=""best"" comment="A unique identifier." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="pIBnu6mB9bsB" name="identifier"/>
<UML:Attribute initialValue=""The best possible score that uses relevance judgements"" comment="A human-readable text description." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="RWNkz2LKX0PS" name="description"/>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Aggregates a score assigned to a paragraph in a result by MIaS, and an estimated probability that the paragraph is relevant by the NTCIR Math Density Estimator package." visibility="public" isSpecification="false" xmi.id="YqTgiiSAcwQy" name="aggregate_score" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" type="6hdYN41IHr4Y" xmi.id="opn9AO8U43EU"/>
<UML:Parameter value="" comment="A result." visibility="private" isSpecification="false" type="8mOjfaA1S0PI" xmi.id="dLNdVVtmeeK1" name="result"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
</UML:Namespace.ownedElement>
</UML:Package>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="1BN2UTZxf49k" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="cojesY1fJAk8" xmi.id="Yc64sjhAbSl9" name="" aggregation="aggregate" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1..m" type="4b2dQ0x2dmpU" xmi.id="JWkK6ALxCJ40" name="aggregations" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Generalization visibility="public" isSpecification="false" child="4b2dQ0x2dmpU" namespace="Logical View" parent="QBj9hlWSQGHK" xmi.id="8kfLsMWfRoBU" name="" discriminator=""/>
<UML:Generalization visibility="public" isSpecification="false" child="QBj9hlWSQGHK" namespace="Logical View" parent="4b2dQ0x2dmpU" xmi.id="AGm50YO4Y0Yb" name="" discriminator=""/>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="faWzoaSCNVdW" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="6EW05LbGMOY8" xmi.id="xqxknVFcHCRz" name="query" aggregation="composite" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="0..m" type="cojesY1fJAk8" xmi.id="hiAKQFJiLTF9" name="results" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Generalization visibility="public" isSpecification="false" child="cojesY1fJAk8" namespace="Logical View" parent="4ytVgzfqpNED" xmi.id="W2R0NJH7WSnP" name="" discriminator=""/>
<UML:Generalization visibility="public" isSpecification="false" child="F4YG5DAn0wnS" namespace="Logical View" parent="4ytVgzfqpNED" xmi.id="8lAxQgshNokZ" name="" discriminator=""/>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="8e2lGpaxAM5E" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="6EW05LbGMOY8" xmi.id="5HGZGr1jEY3H" name="query" aggregation="composite" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1..m" type="cojesY1fJAk8" xmi.id="LWiIKal0p09e" name="results" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="VWWb1TCOI804" name="Result" isAbstract="false"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="4ytVgzfqpNED" xmi.id="d2q5sY90VsHi" name="" client="4b2dQ0x2dmpU"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="cojesY1fJAk8" xmi.id="pkW963OtqEQY" name="" client="4b2dQ0x2dmpU"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="OGgTK22uiq04" name="dict of (str, book)" isAbstract="false"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="Jvh6lbIHHKOV" name="boolean" isAbstract="false"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="CXaQWweS9NRE" name="dict of (str, dict of (str, bool))" isAbstract="false"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="iKA52KGwpIjx" name="dict of (str, bool)" isAbstract="false"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="8mOjfaA1S0PI" name="MIaSResult" isAbstract="false"/>
<UML:Generalization visibility="public" isSpecification="false" child="6mEf1qKgxTDS" namespace="Logical View" parent="4b2dQ0x2dmpU" xmi.id="ftQomO0xePZe" name="" discriminator=""/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="20HXtmPV0PEF" name="list of MIaSResult" isAbstract="false"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="OJGkxIWbC3ea" name="sequence of MIaSResult" isAbstract="false"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="yOuEvDe6YNyB" name="iterable of MIaSResult" isAbstract="false"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="fQMNTPT6JKFf" name="Query" isAbstract="false"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="9GRCjoQeNqCm" name="nová_třída" isAbstract="false"/>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="1quq4IRligKS" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="ZY8KlJrU3Lbp" xmi.id="Y4Qgp4VWhQn2" name="" aggregation="aggregate" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1..m" type="cojesY1fJAk8" xmi.id="sKt9N8du68Jh" name="results" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="AqE6jnr5eqit" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" type="ZY8KlJrU3Lbp" xmi.id="rMf0dTe9a0gu" name="" aggregation="none" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" type="6EW05LbGMOY8" xmi.id="Z7EDK6qLgHVC" name="" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="MR6fl2uKyb6S" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="PkYuFEMbgbow" xmi.id="lki2E3p50rc7" name="" aggregation="none" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="6EW05LbGMOY8" xmi.id="mrGMCvwktzs4" name="query" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="wTZM9LnFkZw7" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="ZY8KlJrU3Lbp" xmi.id="fyBfE3AQ4fow" name="" aggregation="none" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="PkYuFEMbgbow" xmi.id="axIqfV9F5z94" name="executed_query" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="ijj3bzUVwMdq" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="ZY8KlJrU3Lbp" xmi.id="ga592MLvbc42" name="" aggregation="none" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="PkYuFEMbgbow" xmi.id="VQrredwNfTU9" name="executed_query" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="qJqHNk3I1kKl" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="6EW05LbGMOY8" xmi.id="894XBbyFYlv9" name="" aggregation="none" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="PkYuFEMbgbow" xmi.id="ydbJ0A8vWhsn" name="" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="VdGmYs3yQrC0" name="webmias::WebMIaSServer" isAbstract="false"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="6EW05LbGMOY8" xmi.id="8jbrvj42rmGi" name="" client="ydWWY77Z7IjU"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="ydWWY77Z7IjU" xmi.id="0WAwGAF1ANhl" name="" client="ZY8KlJrU3Lbp"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="ydWWY77Z7IjU" xmi.id="nCm6avAEACHF" name="" client="PkYuFEMbgbow"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="rzCAAwOU4vBE" name="ExecutedQuery" isAbstract="false"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="4b2dQ0x2dmpU" xmi.id="Cl6qYgFh3Vsa" name="" client="ZY8KlJrU3Lbp"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="4b2dQ0x2dmpU" xmi.id="LGwUT6V5yGIW" name="" client="ZY8KlJrU3Lbp"/>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="4b2dQ0x2dmpU" xmi.id="uQyTfqG1oIyd" name="" client="ZY8KlJrU3Lbp"/>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="8an4nvzHsFwK" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="false" visibility="public" isSpecification="false" multiplicity="1..m" type="ZY8KlJrU3Lbp" xmi.id="VaaxnYvWE27M" name="" aggregation="none" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="4b2dQ0x2dmpU" xmi.id="ePjU8XIDEVm8" name="aggregation" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="CZ8XKfvenFap" name="list of Result" isAbstract="false"/>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="vLoomSz5MK2L" name="sequence of Result" isAbstract="false"/>
<UML:Class isLeaf="false" isRoot="false" stereotype="class-or-package" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="nnT2h6t7EHxB" name="sequence of query" isAbstract="false"/>
<UML:Package isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="zicy9gtRxgAI" name="eval" isAbstract="false">
<UML:Namespace.ownedElement>
<UML:Class isLeaf="false" isRoot="false" comment="This class represents a final list of results together with the original topic." visibility="public" isSpecification="false" namespace="zicy9gtRxgAI" xmi.id="jyEyXDrygsjD" name="ResultList" isAbstract="false">
<UML:Classifier.feature>
<UML:Attribute comment="The original topic that produced the results." visibility="public" isSpecification="false" type="1gMUZGxpPnQh" xmi.id="RVLkgpmzqgbg" name="topic"/>
<UML:Attribute comment="The final list of results." visibility="public" isSpecification="false" type="vLoomSz5MK2L" xmi.id="52Xp45uuhop9" name="results"/>
<UML:Operation isLeaf="false" isRoot="false" ownerScope="classifier" isQuery="false" visibility="public" isSpecification="false" xmi.id="AgRHeCiRj2pY" name="ResultList" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter value="" comment="The original topic that produced the results." visibility="private" isSpecification="false" type="1gMUZGxpPnQh" xmi.id="ISRaWInzEtMW" name="topic"/>
<UML:Parameter value="" comment="The final list of results." visibility="private" isSpecification="false" type="vLoomSz5MK2L" xmi.id="Zs8NANJEIbw0" name="results"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Evaluates the result list." visibility="public" isSpecification="false" xmi.id="V9Fdi9Zaetee" name="evaluate" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" type="6hdYN41IHr4Y" xmi.id="qjgISFOop349"/>
<UML:Parameter value="" comment="The strategy for evaluation the result list." visibility="private" isSpecification="false" type="sbsXdzb87I0p" xmi.id="TnLFqDNPeH6q" name="evaluation"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
<UML:Class isLeaf="false" isRoot="false" stereotype="37JEobTwuFkU" comment="This class represents a strategy for evaluating result lists using the Bpref evaluation metric." visibility="public" isSpecification="false" namespace="zicy9gtRxgAI" xmi.id="d3q0CutMIdHZ" name="Bpref" isAbstract="false">
<UML:GeneralizableElement.generalization>
<UML:Generalization xmi.idref="raEv4UKes1KK"/>
</UML:GeneralizableElement.generalization>
<UML:Classifier.feature>
<UML:Attribute initialValue=""bpref"" comment="A unique identifier." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="sHOdaiXrUr8M" name="identifier"/>
<UML:Attribute initialValue=""Bpref"" comment="A human-readable text description." visibility="public" isSpecification="false" type="BZ26rvH8Ee1x" xmi.id="YsXumNoW204L" name="description"/>
<UML:Operation isLeaf="false" isRoot="false" isQuery="false" comment="Evaluates a result list." visibility="public" isSpecification="false" xmi.id="KZQ1bcvt4bU9" name="evaluate" isAbstract="false">
<UML:BehavioralFeature.parameter>
<UML:Parameter kind="return" type="6hdYN41IHr4Y" xmi.id="0Gi69ISnZ9oL"/>
<UML:Parameter value="" comment="The result list to be evaluated." visibility="private" isSpecification="false" type="jyEyXDrygsjD" xmi.id="VJmuG9ZYIEyn" name="results"/>
</UML:BehavioralFeature.parameter>
</UML:Operation>
</UML:Classifier.feature>
</UML:Class>
</UML:Namespace.ownedElement>
</UML:Package>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="5QBCZ3KyJa7O" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1..m" type="jyEyXDrygsjD" xmi.id="k09dcUQokFAR" name="" aggregation="aggregate" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1..m" type="4ytVgzfqpNED" xmi.id="Y0Oun27BAwvY" name="results" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="11dimwBv9ZGD" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="false" visibility="public" isSpecification="false" multiplicity="1" type="jyEyXDrygsjD" xmi.id="D4jVKBV3ZPmO" name="" aggregation="none" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="1gMUZGxpPnQh" xmi.id="FlIqxxIeY48j" name="topic" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Class isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="10VSQOzWJzvL" name="ResultList" isAbstract="false"/>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="v0l2DEN1wa3x" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="false" visibility="public" isSpecification="false" multiplicity="1" type="PkYuFEMbgbow" xmi.id="c1ACzWLfZJAq" name="" aggregation="none" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="6EW05LbGMOY8" xmi.id="4E7ONKEAi66X" name="query" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="GKQnyfyWGwyS" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="false" visibility="public" isSpecification="false" multiplicity="1" type="ZY8KlJrU3Lbp" xmi.id="O6aZhPWwr7JC" name="" aggregation="none" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="PkYuFEMbgbow" xmi.id="CAfQonNP5X65" name="executed_query" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="sbsXdzb87I0p" xmi.id="91pl1gLtxvVb" name="" client="jyEyXDrygsjD"/>
<UML:Generalization visibility="public" isSpecification="false" child="d3q0CutMIdHZ" namespace="Logical View" parent="sbsXdzb87I0p" xmi.id="raEv4UKes1KK" name="" discriminator=""/>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="TxlzCIoQGqlL" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1..m" type="jyEyXDrygsjD" xmi.id="4El6AiLmmYZv" name="" aggregation="aggregate" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1..m" type="4ytVgzfqpNED" xmi.id="XqBp381eFDAs" name="results" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Dependency visibility="public" isSpecification="false" namespace="Logical View" supplier="PkYuFEMbgbow" xmi.id="me7TcDZcraSu" name="" client="cojesY1fJAk8"/>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="XRboxilGhd7M" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="false" visibility="public" isSpecification="false" type="cojesY1fJAk8" xmi.id="QrH6YmfWq14d" name="" aggregation="none" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" type="PkYuFEMbgbow" xmi.id="KoNmiJo5IGAw" name="" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="Yc2x3ENMHppH" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="false" visibility="public" isSpecification="false" multiplicity="1" type="PkYuFEMbgbow" xmi.id="hOAV5Os8CzLX" name="executed_query" aggregation="none" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1..m" type="cojesY1fJAk8" xmi.id="S3PK0UAvvBWd" name="" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Association visibility="public" isSpecification="false" namespace="Logical View" xmi.id="PsFiXNeZh8TW" name="">
<UML:Association.connection>
<UML:AssociationEnd isNavigable="false" visibility="public" isSpecification="false" multiplicity="1..m" type="PkYuFEMbgbow" xmi.id="tkKBzmzJSvw5" name="" aggregation="none" changeability="changeable"/>
<UML:AssociationEnd isNavigable="true" visibility="public" isSpecification="false" multiplicity="1" type="4b2dQ0x2dmpU" xmi.id="veNVg9DVKEbR" name="aggregation" aggregation="none" changeability="changeable"/>
</UML:Association.connection>
</UML:Association>
<UML:Generalization visibility="public" isSpecification="false" child="cXSGw7qUu24V" namespace="Logical View" parent="4b2dQ0x2dmpU" xmi.id="WzdDDc3jagqP" name="" discriminator=""/>
<UML:Generalization visibility="public" isSpecification="false" child="oqIExlKEMpso" namespace="Logical View" parent="4b2dQ0x2dmpU" xmi.id="WIcoGSh8ErXW" name="" discriminator=""/>
<UML:Generalization visibility="public" isSpecification="false" child="milrlksfeuXz" namespace="Logical View" parent="oqIExlKEMpso" xmi.id="DNK2zoWyWrOx" name="" discriminator=""/>
<UML:Generalization visibility="public" isSpecification="false" child="BBVygmAAJDYA" namespace="Logical View" parent="oqIExlKEMpso" xmi.id="q7w6cLndALCb" name="" discriminator=""/>
<UML:Generalization visibility="public" isSpecification="false" child="QBj9hlWSQGHK" namespace="Logical View" parent="oqIExlKEMpso" xmi.id="EOSSH5UmLsoj" name="" discriminator=""/>
<UML:Generalization visibility="public" isSpecification="false" child="6mEf1qKgxTDS" namespace="Logical View" parent="4b2dQ0x2dmpU" xmi.id="PBBmUirSALpx" name="" discriminator=""/>
<UML:Package isLeaf="false" isRoot="false" visibility="public" isSpecification="false" namespace="Logical View" xmi.id="7Slg0E8qJ3M9" name="quer" isAbstract="false">
<UML:Namespace.ownedElement/>
</UML:Package>
</UML:Namespace.ownedElement>
<XMI.extension xmi.extender="umbrello">
<diagrams>
<diagram isopen="1" showpubliconly="0" snapcsgrid="0" zoom="70,7570576448898" canvaswidth="3380.56" showattribassocs="1" showpackage="1" fillcolor="#ffffff" canvasheight="1315.22" name="Diagram třídy" snapx="25" linecolor="#000000" type="1" usefillcolor="1" showgrid="0" documentation="" backgroundcolor="#ffffff" showstereotype="1" linewidth="0" snapy="25" showatts="1" showops="1" xmi.id="vbflgzJiL7R9" showopsig="1" localid="-1" textcolor="#000000" griddotcolor="#d3d3d3" showattsig="1" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1" snapgrid="0">
<widgets>
<classwidget height="45" showpubliconly="0" showattributes="1" showpackage="1" drawascircle="0" fillcolor="#ffffe1" linecolor="#000000" isinstance="0" y="-768.92" x="-1221.83" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="546tooNL0Q7Y" localid="LVk1z18vJi1T" showoperations="1" textcolor="#000000" width="180" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<classwidget height="57" showpubliconly="0" showattributes="1" showpackage="1" drawascircle="0" fillcolor="#ffffe1" linecolor="#000000" isinstance="0" y="-680.549" x="-1426.2" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="o6627heT5qM4" localid="3kd8XNiP7kXI" showoperations="1" textcolor="#000000" width="304" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<classwidget height="115" showpubliconly="0" showattributes="1" showpackage="1" fillcolor="#ffe1e1" linecolor="#000000" isinstance="0" y="-605.039" x="-1836.67" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="UgdNpEKELGcw" localid="Ib8tgYImjOaT" showoperations="1" textcolor="#000000" width="449" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<classwidget height="115" showpubliconly="0" showattributes="1" showpackage="1" fillcolor="#ffe1e1" linecolor="#000000" isinstance="0" y="-470.913" x="-1802.85" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="SB6OQvCndoBr" localid="PL1qEiFgyYk2" showoperations="1" textcolor="#000000" width="440" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<classwidget height="115" showpubliconly="0" showattributes="1" showpackage="1" fillcolor="#ffe1e1" linecolor="#000000" isinstance="0" y="-340.841" x="-1745.03" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="OF72e636eAW7" localid="RqhlGpTSs4QC" showoperations="1" textcolor="#000000" width="406" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<classwidget height="115" showpubliconly="0" showattributes="1" showpackage="1" fillcolor="#ffe1e1" linecolor="#000000" isinstance="0" y="-208" x="-1819.26" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="fi38S1qDbrHT" localid="98lif4RV7E51" showoperations="1" textcolor="#000000" width="609" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<classwidget height="57" showpubliconly="0" showattributes="1" showpackage="1" drawascircle="0" fillcolor="#ffffe1" linecolor="#000000" isinstance="0" y="-858.407" x="-1298.07" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="L5wnqwnbipsk" localid="f9vKhYmomyye" showoperations="1" textcolor="#000000" width="281" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<classwidget height="115" showpubliconly="0" showattributes="1" showpackage="1" fillcolor="#e1ffff" linecolor="#000000" isinstance="0" y="-1009.76" x="-1382.46" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="S4yiqbVFd6NK" localid="JecFxTfIkA0I" showoperations="1" textcolor="#000000" width="540" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<classwidget height="57" showpubliconly="0" showattributes="1" showpackage="1" drawascircle="0" fillcolor="#ffffe1" linecolor="#000000" isinstance="0" y="-680.698" x="-1104.71" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="4b2dQ0x2dmpU" localid="h5FXrOs91X0W" showoperations="1" textcolor="#000000" width="355" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<classwidget height="115" showpubliconly="0" showattributes="1" showpackage="1" fillcolor="#e1ffff" linecolor="#000000" isinstance="0" y="-462.359" x="-1314.41" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="KGURbznxPmsi" localid="ZxWV9y53YfZn" showoperations="1" textcolor="#000000" width="621" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<classwidget height="161" showpubliconly="0" showattributes="1" showpackage="1" fillcolor="#ffe1e1" linecolor="#000000" isinstance="0" y="-959.47" x="-2200.91" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="Jmaoc1ymHyD3" localid="UBrzxBIrUtvZ" showoperations="1" textcolor="#000000" width="427" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<classwidget height="207" showpubliconly="0" showattributes="1" showpackage="1" fillcolor="#ffe1e1" linecolor="#000000" isinstance="0" y="-657.687" x="-2645.7" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="1gMUZGxpPnQh" localid="26RYoVf4Js24" showoperations="1" textcolor="#000000" width="793" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<classwidget height="207" showpubliconly="0" showattributes="1" showpackage="1" fillcolor="#e1ffff" linecolor="#000000" isinstance="0" y="-1171.7" x="-713.038" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="6EW05LbGMOY8" localid="S85rm0HEtnkK" showoperations="1" textcolor="#000000" width="876" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<classwidget height="115" showpubliconly="0" showattributes="1" showpackage="1" fillcolor="#e1ffe1" linecolor="#000000" isinstance="0" y="-1266.81" x="-1439.14" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="ydWWY77Z7IjU" localid="YuM2dspiO9BA" showoperations="1" textcolor="#000000" width="425" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<classwidget height="230" showpubliconly="0" showattributes="1" showpackage="1" fillcolor="#e1ffff" linecolor="#000000" isinstance="0" y="-589.828" x="-498.659" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="cojesY1fJAk8" localid="Rt0ymjdbUcwV" showoperations="1" textcolor="#000000" width="1000" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<classwidget height="115" showpubliconly="0" showattributes="1" showpackage="1" fillcolor="#e1ffff" linecolor="#000000" isinstance="0" y="-349.785" x="-498.415" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="F4YG5DAn0wnS" localid="Jtu4Z5HqsG3D" showoperations="1" textcolor="#000000" width="356" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<packagewidget showstereotype="1" usesdiagramusefillcolor="0" x="-2220.13" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" y="-242.171" height="56" localid="bNQCgZvx9luQ" width="70" linecolor="#000000" textcolor="#000000" usefillcolor="1" usesdiagramfillcolor="0" fillcolor="#ffe1e1" linewidth="0" xmi.id="bowZifwT02E4" isinstance="0"/>
<packagewidget showstereotype="1" usesdiagramusefillcolor="0" x="-1006.45" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" y="-771.356" height="56" localid="JG8Vn2anXuLX" width="77" linecolor="#000000" textcolor="#000000" usefillcolor="1" usesdiagramfillcolor="0" fillcolor="#ffffe1" linewidth="0" xmi.id="FYOvVmw2cjTb" isinstance="0"/>
<packagewidget showstereotype="1" usesdiagramusefillcolor="0" x="-969.457" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" y="-1268.06" height="56" localid="hWMVt8hOfTFn" width="79" linecolor="#000000" textcolor="#000000" usefillcolor="1" usesdiagramfillcolor="0" fillcolor="#e1ffe1" linewidth="0" xmi.id="OPog7dVhzDEx" isinstance="0"/>
<packagewidget showstereotype="1" usesdiagramusefillcolor="0" x="-420.995" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" y="-211.151" height="56" localid="iZisdCEgnYKq" width="70" linecolor="#000000" textcolor="#000000" usefillcolor="1" usesdiagramfillcolor="0" fillcolor="#e1ffff" linewidth="0" xmi.id="OLi8f5jOJwYT" isinstance="0"/>
<classwidget height="57" showpubliconly="0" showattributes="1" showpackage="1" drawascircle="0" fillcolor="#ffffe1" linecolor="#000000" isinstance="0" y="-657.086" x="-550.691" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="4ytVgzfqpNED" localid="VGvy7y0bJhuq" showoperations="1" textcolor="#000000" width="214" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<classwidget height="115" showpubliconly="0" showattributes="1" showpackage="1" fillcolor="#e1ffff" linecolor="#000000" isinstance="0" y="-585.354" x="-1314.25" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="6mEf1qKgxTDS" localid="zBA6zskVGscd" showoperations="1" textcolor="#000000" width="579" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<classwidget height="161" showpubliconly="0" showattributes="1" showpackage="1" fillcolor="#e1ffff" linecolor="#000000" isinstance="0" y="-934.311" x="-185.4" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="ZY8KlJrU3Lbp" localid="VnQaKKawE8rq" showoperations="1" textcolor="#000000" width="837" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<classwidget height="161" showpubliconly="0" showattributes="1" showpackage="1" fillcolor="#e1ffff" linecolor="#000000" isinstance="0" y="-762.793" x="5.57707" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="PkYuFEMbgbow" localid="mOahjGLXhXH3" showoperations="1" textcolor="#000000" width="496" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<classwidget height="115" showpubliconly="0" showattributes="1" showpackage="1" fillcolor="#e1e1ff" linecolor="#000000" isinstance="0" y="-951.737" x="-659.135" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="jyEyXDrygsjD" localid="8D4BKg2OLFLI" showoperations="1" textcolor="#000000" width="440" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<packagewidget showstereotype="1" usesdiagramusefillcolor="0" x="-797.789" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" y="-949.487" height="56" localid="UYpyaKEajpfw" width="70" linecolor="#000000" textcolor="#000000" usefillcolor="1" usesdiagramfillcolor="0" fillcolor="#e1e1ff" linewidth="0" xmi.id="zicy9gtRxgAI" isinstance="0"/>
<classwidget height="57" showpubliconly="0" showattributes="1" showpackage="1" drawascircle="0" fillcolor="#ffffe1" linecolor="#000000" isinstance="0" y="-858.403" x="-1012.42" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="sbsXdzb87I0p" localid="oZm5TswbbaRg" showoperations="1" textcolor="#000000" width="323" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<classwidget height="115" showpubliconly="0" showattributes="1" showpackage="1" fillcolor="#e1e1ff" linecolor="#000000" isinstance="0" y="-789.328" x="-493.608" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="d3q0CutMIdHZ" localid="zMtHfEVTRi0S" showoperations="1" textcolor="#000000" width="285" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
<classwidget height="115" showpubliconly="0" showattributes="1" showpackage="1" fillcolor="#e1ffff" linecolor="#000000" isinstance="0" y="-341.159" x="-1314.09" usefillcolor="1" usesdiagramusefillcolor="0" showstereotype="1" linewidth="0" usesdiagramfillcolor="0" xmi.id="cXSGw7qUu24V" localid="DMal1Y4dQaeR" showoperations="1" textcolor="#000000" width="579" showopsigs="601" showattsigs="601" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" showscope="1"/>
</widgets>
<messages/>
<associations>
<assocwidget seqnum="" totalcounta="2" usesdiagramusefillcolor="1" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" widgetbid="546tooNL0Q7Y" linecolor="#000000" type="500" widgetaid="o6627heT5qM4" totalcountb="2" textcolor="none" usefillcolor="1" usesdiagramfillcolor="0" indexa="1" indexb="1" fillcolor="#ffff00" linewidth="0" xmi.id="tgQ49jVr87C8">
<linepath layout="Polyline">
<startpoint startx="-1176.85" starty="-680.549"/>
<endpoint endx="-1176.85" endy="-723.92"/>
</linepath>
</assocwidget>
<assocwidget seqnum="" totalcounta="2" usesdiagramusefillcolor="1" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" widgetbid="o6627heT5qM4" linecolor="#000000" type="500" widgetaid="UgdNpEKELGcw" totalcountb="2" textcolor="none" usefillcolor="1" usesdiagramfillcolor="0" indexa="1" indexb="1" fillcolor="#ffff00" linewidth="0" xmi.id="eOGHXUHuWrPQ">
<linepath layout="Polyline">
<startpoint startx="-1399.88" starty="-605.039"/>
<endpoint endx="-1399.88" endy="-623.549"/>
</linepath>
</assocwidget>
<assocwidget seqnum="" totalcounta="2" usesdiagramusefillcolor="1" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" widgetbid="o6627heT5qM4" linecolor="#000000" type="500" widgetaid="SB6OQvCndoBr" totalcountb="2" textcolor="none" usefillcolor="1" usesdiagramfillcolor="0" indexa="1" indexb="1" fillcolor="#ffff00" linewidth="0" xmi.id="lQsVqd4n0DpY">
<linepath layout="Polyline">
<startpoint startx="-1373.27" starty="-470.913"/>
<endpoint endx="-1373.27" endy="-623.549"/>
</linepath>
</assocwidget>
<assocwidget seqnum="" totalcounta="2" usesdiagramusefillcolor="1" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" widgetbid="o6627heT5qM4" linecolor="#000000" type="500" widgetaid="OF72e636eAW7" totalcountb="2" textcolor="none" usefillcolor="1" usesdiagramfillcolor="0" indexa="1" indexb="1" fillcolor="#ffff00" linewidth="0" xmi.id="A9PTsTX4Dc6T">
<linepath layout="Polyline">
<startpoint startx="-1348.73" starty="-340.841"/>
<endpoint endx="-1348.73" endy="-623.549"/>
</linepath>
</assocwidget>
<assocwidget seqnum="" totalcounta="2" usesdiagramusefillcolor="0" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" widgetbid="o6627heT5qM4" linecolor="#000000" type="500" widgetaid="fi38S1qDbrHT" totalcountb="2" textcolor="#000000" usefillcolor="1" usesdiagramfillcolor="0" indexa="1" indexb="1" fillcolor="#ffff00" linewidth="0" xmi.id="QtViSgoGxwEx">
<linepath layout="Polyline">
<startpoint startx="-1327" starty="-208"/>
<endpoint endx="-1327" endy="-623.549"/>
</linepath>
</assocwidget>
<assocwidget seqnum="" totalcounta="2" usesdiagramusefillcolor="0" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" widgetbid="546tooNL0Q7Y" linecolor="#000000" type="500" widgetaid="L5wnqwnbipsk" totalcountb="2" textcolor="none" usefillcolor="1" usesdiagramfillcolor="0" indexa="1" indexb="1" fillcolor="#ffff00" linewidth="0" xmi.id="tfNGJ885F38C">
<linepath layout="Polyline">
<startpoint startx="-1129.26" starty="-801.407"/>
<endpoint endx="-1129.26" endy="-768.92"/>
</linepath>
</assocwidget>
<assocwidget seqnum="" totalcounta="2" usesdiagramusefillcolor="0" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" widgetbid="L5wnqwnbipsk" linecolor="#000000" type="500" widgetaid="S4yiqbVFd6NK" totalcountb="2" textcolor="none" usefillcolor="1" usesdiagramfillcolor="0" indexa="1" indexb="1" fillcolor="#ffff00" linewidth="0" xmi.id="JqzbNyX8XJ3i">
<linepath layout="Polyline">
<startpoint startx="-1143.23" starty="-894.76"/>
<endpoint endx="-1143.23" endy="-858.407"/>
</linepath>
</assocwidget>
<assocwidget seqnum="" totalcounta="2" usesdiagramusefillcolor="0" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" widgetbid="546tooNL0Q7Y" linecolor="#000000" type="500" widgetaid="4b2dQ0x2dmpU" totalcountb="2" textcolor="none" usefillcolor="1" usesdiagramfillcolor="0" indexa="1" indexb="1" fillcolor="#ffff00" linewidth="0" xmi.id="Ooo7qPtQbEb0">
<linepath layout="Polyline">
<startpoint startx="-1084.32" starty="-680.698"/>
<endpoint endx="-1084.32" endy="-723.92"/>
</linepath>
</assocwidget>
<assocwidget seqnum="" totalcounta="2" usesdiagramusefillcolor="1" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" widgetbid="4b2dQ0x2dmpU" linecolor="#000000" type="500" widgetaid="KGURbznxPmsi" totalcountb="2" textcolor="none" usefillcolor="1" usesdiagramfillcolor="0" indexa="1" indexb="1" fillcolor="#ffff00" linewidth="0" xmi.id="ClfqPf1S2yu6">
<linepath layout="Polyline">
<startpoint startx="-723.206" starty="-462.359"/>
<endpoint endx="-906.633" endy="-623.698"/>
<point x="-723.206" y="-597.958"/>
<point x="-906.633" y="-598.766"/>
</linepath>
</assocwidget>
<assocwidget seqnum="" totalcounta="2" usesdiagramusefillcolor="1" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" widgetbid="Jmaoc1ymHyD3" linecolor="#000000" type="502" widgetaid="o6627heT5qM4" totalcountb="2" textcolor="none" usefillcolor="1" usesdiagramfillcolor="0" indexa="1" indexb="1" fillcolor="#ffff00" linewidth="0" xmi.id="8ZNspn9Y9c9I">
<linepath layout="Polyline">
<startpoint startx="-1377.17" starty="-680.549"/>
<endpoint endx="-1773.91" endy="-812.476"/>
<point x="-1377.17" y="-812.476"/>
</linepath>
</assocwidget>
<assocwidget seqnum="" totalcounta="2" usesdiagramusefillcolor="0" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" widgetbid="o6627heT5qM4" linecolor="#000000" type="501" widgetaid="Jmaoc1ymHyD3" totalcountb="2" textcolor="#000000" usefillcolor="1" usesdiagramfillcolor="0" indexa="1" indexb="1" fillcolor="#ffff00" linewidth="0" xmi.id="MPF3dCR1Wj88">
<linepath layout="Polyline">
<startpoint startx="-1875.85" starty="-798.47"/>
<endpoint endx="-1426.2" endy="-679.901"/>
<point x="-1875.85" y="-679.901"/>
</linepath>
<floatingtext height="27" fillcolor="none" linecolor="#000000" isinstance="0" y="-791.33" x="-1867.1" usefillcolor="1" usesdiagramusefillcolor="1" showstereotype="1" role="701" linewidth="0" text="1" usesdiagramfillcolor="1" xmi.id="4wGZiBfH7SbV" localid="qLKDqPK9AEwp" textcolor="none" width="17" posttext="" pretext="" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0"/>
<floatingtext height="27" fillcolor="none" linecolor="#000000" isinstance="0" y="-679.561" x="-1467.43" usefillcolor="1" usesdiagramusefillcolor="1" showstereotype="1" role="702" linewidth="0" text="1..m" usesdiagramfillcolor="1" xmi.id="Uo1RMoKNLurI" localid="ECNf3BRf6lj3" textcolor="none" width="40" posttext="" pretext="" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0"/>
<floatingtext height="27" fillcolor="none" linecolor="#000000" isinstance="0" y="-710.918" x="-1542.01" usefillcolor="1" usesdiagramusefillcolor="1" showstereotype="1" role="710" linewidth="0" text="math_formats" usesdiagramfillcolor="1" xmi.id="UpdSf44GQiaf" localid="9u6EIIV4u6DP" textcolor="none" width="113" posttext="" pretext="+" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0"/>
</assocwidget>
<assocwidget seqnum="" totalcounta="2" usesdiagramusefillcolor="0" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" widgetbid="Jmaoc1ymHyD3" linecolor="#000000" type="510" widgetaid="1gMUZGxpPnQh" totalcountb="2" textcolor="#000000" usefillcolor="1" usesdiagramfillcolor="0" indexa="1" indexb="1" fillcolor="#ffff00" linewidth="0" xmi.id="v9y2N96diuEO">
<linepath layout="Polyline">
<startpoint startx="-2006.44" starty="-657.687"/>
<endpoint endx="-2006.44" endy="-798.47"/>
</linepath>
<floatingtext height="27" fillcolor="none" linecolor="#000000" isinstance="0" y="-698.362" x="-2000.37" usefillcolor="1" usesdiagramusefillcolor="1" showstereotype="1" role="701" linewidth="0" text="1" usesdiagramfillcolor="1" xmi.id="sPIZ7BT94I5l" localid="y7tLA0YsyjqH" textcolor="none" width="17" posttext="" pretext="" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0"/>
<floatingtext height="27" fillcolor="none" linecolor="#000000" isinstance="0" y="-790.598" x="-1998.17" usefillcolor="1" usesdiagramusefillcolor="1" showstereotype="1" role="702" linewidth="0" text="1..m" usesdiagramfillcolor="1" xmi.id="CAwFULRBk2oq" localid="RuqCouGLk7eP" textcolor="none" width="40" posttext="" pretext="" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0"/>
<floatingtext height="27" fillcolor="none" linecolor="#000000" isinstance="0" y="-791.025" x="-2091.49" usefillcolor="1" usesdiagramusefillcolor="1" showstereotype="1" role="710" linewidth="0" text="formulae" usesdiagramfillcolor="1" xmi.id="AtA5ZKtJrd8K" localid="MtnvIRGBQ5rV" textcolor="none" width="79" posttext="" pretext="+" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0"/>
</assocwidget>
<assocwidget seqnum="" totalcounta="2" usesdiagramusefillcolor="1" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" widgetbid="Jmaoc1ymHyD3" linecolor="#000000" type="502" widgetaid="1gMUZGxpPnQh" totalcountb="2" textcolor="none" usefillcolor="1" usesdiagramfillcolor="0" indexa="1" indexb="1" fillcolor="#ffff00" linewidth="0" xmi.id="Pvv8lyUn6xut">
<linepath layout="Polyline">
<startpoint startx="-2175.95" starty="-657.687"/>
<endpoint endx="-2175.95" endy="-798.47"/>
</linepath>
</assocwidget>
<assocwidget seqnum="" totalcounta="2" usesdiagramusefillcolor="0" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" widgetbid="o6627heT5qM4" linecolor="#000000" type="502" widgetaid="1gMUZGxpPnQh" totalcountb="2" textcolor="none" usefillcolor="1" usesdiagramfillcolor="0" indexa="1" indexb="1" fillcolor="#ffff00" linewidth="0" xmi.id="cvI6GwBOPDia">
<linepath layout="Polyline">
<startpoint startx="-1852.7" starty="-626.886"/>
<endpoint endx="-1426.2" endy="-626.886"/>
</linepath>
</assocwidget>
<assocwidget seqnum="" totalcounta="2" usesdiagramusefillcolor="0" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" widgetbid="6EW05LbGMOY8" linecolor="#000000" type="502" widgetaid="1gMUZGxpPnQh" totalcountb="2" textcolor="none" usefillcolor="1" usesdiagramfillcolor="0" indexa="1" indexb="1" fillcolor="#ffff00" linewidth="0" xmi.id="Zj60uetC16SM">
<linepath layout="Polyline">
<startpoint startx="-2319.35" starty="-657.687"/>
<endpoint endx="-713.038" endy="-1109.2"/>
<point x="-2319.35" y="-1109.2"/>
</linepath>
</assocwidget>
<assocwidget seqnum="" totalcounta="2" usesdiagramusefillcolor="0" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" widgetbid="6EW05LbGMOY8" linecolor="#000000" type="510" widgetaid="1gMUZGxpPnQh" totalcountb="2" textcolor="#000000" usefillcolor="1" usesdiagramfillcolor="0" indexa="1" indexb="1" fillcolor="#ffff00" linewidth="0" xmi.id="gE1PTTX8jCOW">
<linepath layout="Polyline">
<startpoint startx="-2253.38" starty="-657.687"/>
<endpoint endx="-713.038" endy="-1093.92"/>
<point x="-2253.38" y="-1093.92"/>
</linepath>
<floatingtext height="27" fillcolor="none" linecolor="#000000" isinstance="0" y="-698.878" x="-2274.67" usefillcolor="1" usesdiagramusefillcolor="1" showstereotype="1" role="701" linewidth="0" text="1" usesdiagramfillcolor="1" xmi.id="Zv16zo9oeeLO" localid="glBnrBrTQldB" textcolor="none" width="17" posttext="" pretext="" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0"/>
<floatingtext height="27" fillcolor="none" linecolor="#000000" isinstance="0" y="-1093.18" x="-758.636" usefillcolor="1" usesdiagramusefillcolor="1" showstereotype="1" role="702" linewidth="0" text="1..m" usesdiagramfillcolor="1" xmi.id="8Dzqhn5KuOa7" localid="9dJnKjdnVuVu" textcolor="none" width="40" posttext="" pretext="" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0"/>
<floatingtext height="27" fillcolor="none" linecolor="#000000" isinstance="0" y="-711.166" x="-2249.64" usefillcolor="1" usesdiagramusefillcolor="1" showstereotype="1" role="709" linewidth="0" text="topic" usesdiagramfillcolor="1" xmi.id="QLTmlNiim2EX" localid="KCBJfaidBiag" textcolor="none" width="51" posttext="" pretext="+" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0"/>
</assocwidget>
<assocwidget seqnum="" totalcounta="2" usesdiagramusefillcolor="0" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" widgetbid="o6627heT5qM4" linecolor="#000000" type="512" widgetaid="6EW05LbGMOY8" totalcountb="2" textcolor="#000000" usefillcolor="1" usesdiagramfillcolor="0" indexa="1" indexb="1" fillcolor="#ffff00" linewidth="0" xmi.id="smzuZrTK04J0">
<linepath layout="Polyline">
<startpoint startx="-713.038" starty="-1032.01"/>
<endpoint endx="-1315.65" endy="-680.549"/>
<point x="-1500.29" y="-1032.01"/>
<point x="-1501.32" y="-859.718"/>
<point x="-1315.65" y="-859.186"/>
</linepath>
<floatingtext height="27" fillcolor="none" linecolor="#000000" isinstance="0" y="-1031.43" x="-757.574" usefillcolor="1" usesdiagramusefillcolor="1" showstereotype="1" role="701" linewidth="0" text="1..m" usesdiagramfillcolor="1" xmi.id="GzMeWzYugbjn" localid="dH7imC6w63Xu" textcolor="none" width="40" posttext="" pretext="" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0"/>
<floatingtext height="27" fillcolor="none" linecolor="#000000" isinstance="0" y="-716.546" x="-1336.36" usefillcolor="1" usesdiagramusefillcolor="1" showstereotype="1" role="702" linewidth="0" text="1" usesdiagramfillcolor="1" xmi.id="kO8W9sQtr7I3" localid="C5fzIN2Nfwkg" textcolor="none" width="17" posttext="" pretext="" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0"/>
<floatingtext height="27" fillcolor="none" linecolor="#000000" isinstance="0" y="-718.576" x="-1312.95" usefillcolor="1" usesdiagramusefillcolor="1" showstereotype="1" role="710" linewidth="0" text="math_format" usesdiagramfillcolor="1" xmi.id="zLcqs8txgq6J" localid="JykyY9zFreuA" textcolor="none" width="105" posttext="" pretext="+" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0"/>
</assocwidget>
<assocwidget seqnum="" totalcounta="2" usesdiagramusefillcolor="1" font="TeX Gyre Heros,12,-1,5,50,0,0,0,0,0" widgetbid="1gMUZGxpPnQh" linecolor="#000000" type="502" widgetaid="6EW05LbGMOY8" totalcountb="2" textcolor="none" usefillcolor="1" usesdiagramfillcolor="0" indexa="1" indexb="1" fillcolor="#ffff00" linewidth="0" xmi.id="fvxHnlqL4NZZ">
<linepath layout="Polyline">
<startpoint startx="-713.038" starty="-1123.88"/>
<endpoint endx="-2340.76" endy="-657.687"/>
<point x="-2340.76" y="-1123.88"/>
</linepath>