-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathOnlineIncrementalStatistics004.nb
7007 lines (6800 loc) · 326 KB
/
OnlineIncrementalStatistics004.nb
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
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 9.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 157, 7]
NotebookDataLength[ 333373, 6999]
NotebookOptionsPosition[ 317104, 6757]
NotebookOutlinePosition[ 317680, 6778]
CellTagsIndexPosition[ 317637, 6775]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell["Reactive Online Incremental Statistics", "Title",ExpressionUUID->"47b86e07-a997-462a-9def-8d76a4865f63"],
Cell["Brian Beckman", "Author",ExpressionUUID->"971c298c-8e8b-464d-90ac-2ac01172dc79"],
Cell["Improved version of 13 April 2014", "Date",
CellChangeTimes->{{3.606356646477336*^9, 3.606356653196603*^9}, {
3.606387819210605*^9,
3.606387819345187*^9}},ExpressionUUID->"d6ca3544-fe3d-4e93-a3fc-\
81f00d0590eb"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"Directory", "[", "]"}]], "Input",
CellChangeTimes->{{3.905115324836877*^9, 3.9051153276531267`*^9}},
CellLabel->"In[1]:=",ExpressionUUID->"9fdf7074-25f7-410e-9657-9a8232a830f6"],
Cell[BoxData["\<\"/Users/brian\"\>"], "Output",
CellChangeTimes->{3.9051153280301943`*^9, 3.913297478150775*^9},
CellLabel->"Out[1]=",ExpressionUUID->"83d574e4-d23d-4a69-b858-a9d1e3814282"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"<<",
"\"\<~/Documents/GitHub/MathematicaNotebooks/PROGRAMMING/\
InterfacesAndPolymorphism006.m\>\""}]], "Input",
CellChangeTimes->{{3.90511534489571*^9, 3.9051153739481173`*^9}, {
3.9051155278792*^9, 3.905115528670238*^9}},
CellLabel->"In[1]:=",ExpressionUUID->"52e2ed3f-a5c0-4b71-a4d4-ac60f22a2d80"],
Cell[BoxData[
TemplateBox[{
"Part", "partd",
"\"Part specification \\!\\(\\*RowBox[{InterpretationBox[RowBox[{TagBox[\\\
\"Dispatch\\\", \\\"SummaryHead\\\"], \\\"[\\\", \
DynamicModuleBox[{Typeset`open$$ = False, Set[Typeset`embedState$$, \\\"Ready\
\\\"]}, TemplateBox[List[PaneSelectorBox[List[Rule[False, \
GridBox[List[List[PaneBox[ButtonBox[DynamicBox[FEPrivate`FrontEndResource[\\\"\
FEBitmaps\\\", \\\"SummaryBoxOpener\\\"]], RuleDelayed[ButtonFunction, \
Set[Typeset`open$$, True]], Rule[Appearance, None], Rule[BaseStyle, List[]], \
Rule[Evaluator, Automatic], Rule[Method, \\\"Preemptive\\\"]], \
Rule[Alignment, List[Center, Center]], Rule[ImageSize, \
Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]]], \
GraphicsBox[List[GrayLevel[0.5`], PolygonBox[List[List[0.25`, 0.5`], \
List[0.05`, 0.35`], List[0.15`, 0.35`], List[0.35`, 0.5`], List[0.15`, \
0.65`], List[0.05`, 0.65`]]], PolygonBox[List[List[0.4`, 0.5`], List[0.2`, \
0.35`], List[0.35`, 0.35`], List[0.55`, 0.5`], List[0.35`, 0.65`], List[0.2`, \
0.65`]]], PolygonBox[List[List[0.95`, 0.5`], List[0.55`, 0.1`], List[0.6`, \
0.35`], List[0.4`, 0.35`], List[0.6`, 0.5`], List[0.4`, 0.65`], List[0.6`, \
0.65`], List[0.55`, 0.9`]]]], Rule[PlotRange, List[List[-0.05`, 1.05`], \
List[-0.05`, 1.05`]]], Rule[Background, GrayLevel[0.93`]], Rule[FrameStyle, \
Directive[Thickness[Tiny], GrayLevel[0.7`]]], Rule[Axes, False], \
Rule[AspectRatio, 1], Rule[ImageSize, Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]], Rule[Frame, True], \
Rule[FrameTicks, None], Rule[FrameStyle, Directive[Opacity[0.5`], \
Thickness[Tiny], RGBColor[0.368417`, 0.506779`, 0.709798`]]]], \
GridBox[List[List[RowBox[List[TagBox[\\\"\\\\\\\"Length: \\\\\\\"\\\", \
\\\"SummaryItemAnnotation\\\"], \\\"\\\\[InvisibleSpace]\\\", \
TagBox[\\\"1\\\", \\\"SummaryItem\\\"]]]]], Rule[GridBoxAlignment, List[Rule[\
\\\"Columns\\\", List[List[Left]]], Rule[\\\"Rows\\\", \
List[List[Automatic]]]]], Rule[AutoDelete, False], Rule[GridBoxItemSize, \
List[Rule[\\\"Columns\\\", List[List[Automatic]]], Rule[\\\"Rows\\\", \
List[List[Automatic]]]]], Rule[GridBoxSpacings, List[Rule[\\\"Columns\\\", \
List[List[2]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaseStyle, \
List[Rule[ShowStringCharacters, False], Rule[NumberMarks, False], \
Rule[PrintPrecision, 3], Rule[ShowSyntaxStyles, False]]]]]], \
Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", List[List[Left]]], \
Rule[\\\"Rows\\\", List[List[Top]]]]], Rule[AutoDelete, False], \
Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", List[List[Automatic]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaselinePosition, List[1, \
1]]]], Rule[True, \
GridBox[List[List[PaneBox[ButtonBox[DynamicBox[FEPrivate`FrontEndResource[\\\"\
FEBitmaps\\\", \\\"SummaryBoxCloser\\\"]], RuleDelayed[ButtonFunction, \
Set[Typeset`open$$, False]], Rule[Appearance, None], Rule[BaseStyle, List[]], \
Rule[Evaluator, Automatic], Rule[Method, \\\"Preemptive\\\"]], \
Rule[Alignment, List[Center, Center]], Rule[ImageSize, \
Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]]], \
GraphicsBox[List[GrayLevel[0.5`], PolygonBox[List[List[0.25`, 0.5`], \
List[0.05`, 0.35`], List[0.15`, 0.35`], List[0.35`, 0.5`], List[0.15`, \
0.65`], List[0.05`, 0.65`]]], PolygonBox[List[List[0.4`, 0.5`], List[0.2`, \
0.35`], List[0.35`, 0.35`], List[0.55`, 0.5`], List[0.35`, 0.65`], List[0.2`, \
0.65`]]], PolygonBox[List[List[0.95`, 0.5`], List[0.55`, 0.1`], List[0.6`, \
0.35`], List[0.4`, 0.35`], List[0.6`, 0.5`], List[0.4`, 0.65`], List[0.6`, \
0.65`], List[0.55`, 0.9`]]]], Rule[PlotRange, List[List[-0.05`, 1.05`], \
List[-0.05`, 1.05`]]], Rule[Background, GrayLevel[0.93`]], Rule[FrameStyle, \
Directive[Thickness[Tiny], GrayLevel[0.7`]]], Rule[Axes, False], \
Rule[AspectRatio, 1], Rule[ImageSize, Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]], Rule[Frame, True], \
Rule[FrameTicks, None], Rule[FrameStyle, Directive[Opacity[0.5`], \
Thickness[Tiny], RGBColor[0.368417`, 0.506779`, 0.709798`]]]], \
GridBox[List[List[RowBox[List[TagBox[\\\"\\\\\\\"Length: \\\\\\\"\\\", \
\\\"SummaryItemAnnotation\\\"], \\\"\\\\[InvisibleSpace]\\\", \
TagBox[\\\"1\\\", \\\"SummaryItem\\\"]]]], List[RowBox[List[TagBox[\\\"\\\\\\\
\"Rules:\\\\\\\"\\\", \\\"SummaryItemAnnotation\\\"], \
\\\"\\\\[InvisibleSpace]\\\", TagBox[\\\"\\\\\\\"\\\\\\\"\\\", \
\\\"SummaryItem\\\"]]]], \
List[TagBox[TagBox[GridBox[List[List[RowBox[List[RowBox[List[\\\"f\\\", \\\"[\
\\\", RowBox[List[\\\"x_Integer\\\", \\\",\\\", \\\"y_Real\\\"]], \
\\\"]\\\"]], \\\"\\\\[RuleDelayed]\\\", RowBox[List[\\\"x\\\", \\\"+\\\", \
\\\"y\\\"]]]]]], Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", \
List[List[Left]]]]], Rule[DefaultBaseStyle, \\\"Column\\\"], \
Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", List[List[Automatic]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]]], \\\"Column\\\"], \
\\\"SummaryItem\\\"]]], Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", \
List[List[Left]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]], \
Rule[AutoDelete, False], Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", \
List[List[Automatic]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]], \
Rule[GridBoxSpacings, List[Rule[\\\"Columns\\\", List[List[2]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaseStyle, \
List[Rule[ShowStringCharacters, False], Rule[NumberMarks, False], \
Rule[PrintPrecision, 3], Rule[ShowSyntaxStyles, False]]]]]], \
Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", List[List[Left]]], \
Rule[\\\"Rows\\\", List[List[Top]]]]], Rule[AutoDelete, False], \
Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", List[List[Automatic]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaselinePosition, List[1, \
1]]]]], Dynamic[Typeset`open$$], Rule[ImageSize, Automatic]]], \
\\\"SummaryPanel\\\"], RuleDelayed[DynamicModuleValues, List[]]], \
\\\"]\\\"}], Dispatch[List[RuleDelayed[f[Pattern[x, Blank[Integer]], \
Pattern[y, Blank[Real]]], Plus[x, y]]]], Rule[Selectable, False], \
Rule[Editable, False], Rule[SelectWithContents, True]], \\\"\
\[LeftDoubleBracket]\\\", \\\"1\\\", \\\"\[RightDoubleBracket]\\\"}]\\) is \
longer than depth of object.\"", 2, 1, 1, 30817890461013956503, "Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.905115259023024*^9, 3.905115375015884*^9,
3.9132974798812027`*^9, 3.9138858002060623`*^9},
CellLabel->
"During evaluation of \
In[1]:=",ExpressionUUID->"f7695a81-175c-40fe-89f6-5bc864c8df55"],
Cell[BoxData[
TemplateBox[{
"Part", "partd",
"\"Part specification \\!\\(\\*RowBox[{InterpretationBox[RowBox[{TagBox[\\\
\"Dispatch\\\", \\\"SummaryHead\\\"], \\\"[\\\", \
DynamicModuleBox[{Typeset`open$$ = False, Set[Typeset`embedState$$, \\\"Ready\
\\\"]}, TemplateBox[List[PaneSelectorBox[List[Rule[False, \
GridBox[List[List[PaneBox[ButtonBox[DynamicBox[FEPrivate`FrontEndResource[\\\"\
FEBitmaps\\\", \\\"SummaryBoxOpener\\\"]], RuleDelayed[ButtonFunction, \
Set[Typeset`open$$, True]], Rule[Appearance, None], Rule[BaseStyle, List[]], \
Rule[Evaluator, Automatic], Rule[Method, \\\"Preemptive\\\"]], \
Rule[Alignment, List[Center, Center]], Rule[ImageSize, \
Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]]], \
GraphicsBox[List[GrayLevel[0.5`], PolygonBox[List[List[0.25`, 0.5`], \
List[0.05`, 0.35`], List[0.15`, 0.35`], List[0.35`, 0.5`], List[0.15`, \
0.65`], List[0.05`, 0.65`]]], PolygonBox[List[List[0.4`, 0.5`], List[0.2`, \
0.35`], List[0.35`, 0.35`], List[0.55`, 0.5`], List[0.35`, 0.65`], List[0.2`, \
0.65`]]], PolygonBox[List[List[0.95`, 0.5`], List[0.55`, 0.1`], List[0.6`, \
0.35`], List[0.4`, 0.35`], List[0.6`, 0.5`], List[0.4`, 0.65`], List[0.6`, \
0.65`], List[0.55`, 0.9`]]]], Rule[PlotRange, List[List[-0.05`, 1.05`], \
List[-0.05`, 1.05`]]], Rule[Background, GrayLevel[0.93`]], Rule[FrameStyle, \
Directive[Thickness[Tiny], GrayLevel[0.7`]]], Rule[Axes, False], \
Rule[AspectRatio, 1], Rule[ImageSize, Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]], Rule[Frame, True], \
Rule[FrameTicks, None], Rule[FrameStyle, Directive[Opacity[0.5`], \
Thickness[Tiny], RGBColor[0.368417`, 0.506779`, 0.709798`]]]], \
GridBox[List[List[RowBox[List[TagBox[\\\"\\\\\\\"Length: \\\\\\\"\\\", \
\\\"SummaryItemAnnotation\\\"], \\\"\\\\[InvisibleSpace]\\\", \
TagBox[\\\"1\\\", \\\"SummaryItem\\\"]]]]], Rule[GridBoxAlignment, List[Rule[\
\\\"Columns\\\", List[List[Left]]], Rule[\\\"Rows\\\", \
List[List[Automatic]]]]], Rule[AutoDelete, False], Rule[GridBoxItemSize, \
List[Rule[\\\"Columns\\\", List[List[Automatic]]], Rule[\\\"Rows\\\", \
List[List[Automatic]]]]], Rule[GridBoxSpacings, List[Rule[\\\"Columns\\\", \
List[List[2]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaseStyle, \
List[Rule[ShowStringCharacters, False], Rule[NumberMarks, False], \
Rule[PrintPrecision, 3], Rule[ShowSyntaxStyles, False]]]]]], \
Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", List[List[Left]]], \
Rule[\\\"Rows\\\", List[List[Top]]]]], Rule[AutoDelete, False], \
Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", List[List[Automatic]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaselinePosition, List[1, \
1]]]], Rule[True, \
GridBox[List[List[PaneBox[ButtonBox[DynamicBox[FEPrivate`FrontEndResource[\\\"\
FEBitmaps\\\", \\\"SummaryBoxCloser\\\"]], RuleDelayed[ButtonFunction, \
Set[Typeset`open$$, False]], Rule[Appearance, None], Rule[BaseStyle, List[]], \
Rule[Evaluator, Automatic], Rule[Method, \\\"Preemptive\\\"]], \
Rule[Alignment, List[Center, Center]], Rule[ImageSize, \
Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]]], \
GraphicsBox[List[GrayLevel[0.5`], PolygonBox[List[List[0.25`, 0.5`], \
List[0.05`, 0.35`], List[0.15`, 0.35`], List[0.35`, 0.5`], List[0.15`, \
0.65`], List[0.05`, 0.65`]]], PolygonBox[List[List[0.4`, 0.5`], List[0.2`, \
0.35`], List[0.35`, 0.35`], List[0.55`, 0.5`], List[0.35`, 0.65`], List[0.2`, \
0.65`]]], PolygonBox[List[List[0.95`, 0.5`], List[0.55`, 0.1`], List[0.6`, \
0.35`], List[0.4`, 0.35`], List[0.6`, 0.5`], List[0.4`, 0.65`], List[0.6`, \
0.65`], List[0.55`, 0.9`]]]], Rule[PlotRange, List[List[-0.05`, 1.05`], \
List[-0.05`, 1.05`]]], Rule[Background, GrayLevel[0.93`]], Rule[FrameStyle, \
Directive[Thickness[Tiny], GrayLevel[0.7`]]], Rule[Axes, False], \
Rule[AspectRatio, 1], Rule[ImageSize, Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]], Rule[Frame, True], \
Rule[FrameTicks, None], Rule[FrameStyle, Directive[Opacity[0.5`], \
Thickness[Tiny], RGBColor[0.368417`, 0.506779`, 0.709798`]]]], \
GridBox[List[List[RowBox[List[TagBox[\\\"\\\\\\\"Length: \\\\\\\"\\\", \
\\\"SummaryItemAnnotation\\\"], \\\"\\\\[InvisibleSpace]\\\", \
TagBox[\\\"1\\\", \\\"SummaryItem\\\"]]]], List[RowBox[List[TagBox[\\\"\\\\\\\
\"Rules:\\\\\\\"\\\", \\\"SummaryItemAnnotation\\\"], \
\\\"\\\\[InvisibleSpace]\\\", TagBox[\\\"\\\\\\\"\\\\\\\"\\\", \
\\\"SummaryItem\\\"]]]], \
List[TagBox[TagBox[GridBox[List[List[RowBox[List[RowBox[List[\\\"f\\\", \\\"[\
\\\", RowBox[List[\\\"x_Integer\\\", \\\",\\\", \\\"y_Real\\\"]], \
\\\"]\\\"]], \\\"\\\\[RuleDelayed]\\\", RowBox[List[\\\"x\\\", \\\"+\\\", \
\\\"y\\\"]]]]]], Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", \
List[List[Left]]]]], Rule[DefaultBaseStyle, \\\"Column\\\"], \
Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", List[List[Automatic]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]]], \\\"Column\\\"], \
\\\"SummaryItem\\\"]]], Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", \
List[List[Left]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]], \
Rule[AutoDelete, False], Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", \
List[List[Automatic]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]], \
Rule[GridBoxSpacings, List[Rule[\\\"Columns\\\", List[List[2]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaseStyle, \
List[Rule[ShowStringCharacters, False], Rule[NumberMarks, False], \
Rule[PrintPrecision, 3], Rule[ShowSyntaxStyles, False]]]]]], \
Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", List[List[Left]]], \
Rule[\\\"Rows\\\", List[List[Top]]]]], Rule[AutoDelete, False], \
Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", List[List[Automatic]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaselinePosition, List[1, \
1]]]]], Dynamic[Typeset`open$$], Rule[ImageSize, Automatic]]], \
\\\"SummaryPanel\\\"], RuleDelayed[DynamicModuleValues, List[]]], \
\\\"]\\\"}], Dispatch[List[RuleDelayed[f[Pattern[x, Blank[Integer]], \
Pattern[y, Blank[Real]]], Plus[x, y]]]], Rule[Selectable, False], \
Rule[Editable, False], Rule[SelectWithContents, True]], \\\"\
\[LeftDoubleBracket]\\\", \\\"1\\\", \\\"\[RightDoubleBracket]\\\"}]\\) is \
longer than depth of object.\"", 2, 1, 2, 30817890461013956503, "Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.905115259023024*^9, 3.905115375015884*^9,
3.9132974798812027`*^9, 3.913885800211973*^9},
CellLabel->
"During evaluation of \
In[1]:=",ExpressionUUID->"44ce98ab-9d84-4d56-9c1a-2715abd88e90"],
Cell[BoxData[
TemplateBox[{
"Part", "pkspec1",
"\"The expression \\!\\(\\*InterpretationBox[RowBox[{TagBox[\\\"Dispatch\\\
\", \\\"SummaryHead\\\"], \\\"[\\\", DynamicModuleBox[{Typeset`open$$ = \
False, Set[Typeset`embedState$$, \\\"Ready\\\"]}, \
TemplateBox[List[PaneSelectorBox[List[Rule[False, \
GridBox[List[List[PaneBox[ButtonBox[DynamicBox[FEPrivate`FrontEndResource[\\\"\
FEBitmaps\\\", \\\"SummaryBoxOpener\\\"]], RuleDelayed[ButtonFunction, \
Set[Typeset`open$$, True]], Rule[Appearance, None], Rule[BaseStyle, List[]], \
Rule[Evaluator, Automatic], Rule[Method, \\\"Preemptive\\\"]], \
Rule[Alignment, List[Center, Center]], Rule[ImageSize, \
Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]]], \
GraphicsBox[List[GrayLevel[0.5`], PolygonBox[List[List[0.25`, 0.5`], \
List[0.05`, 0.35`], List[0.15`, 0.35`], List[0.35`, 0.5`], List[0.15`, \
0.65`], List[0.05`, 0.65`]]], PolygonBox[List[List[0.4`, 0.5`], List[0.2`, \
0.35`], List[0.35`, 0.35`], List[0.55`, 0.5`], List[0.35`, 0.65`], List[0.2`, \
0.65`]]], PolygonBox[List[List[0.95`, 0.5`], List[0.55`, 0.1`], List[0.6`, \
0.35`], List[0.4`, 0.35`], List[0.6`, 0.5`], List[0.4`, 0.65`], List[0.6`, \
0.65`], List[0.55`, 0.9`]]]], Rule[PlotRange, List[List[-0.05`, 1.05`], \
List[-0.05`, 1.05`]]], Rule[Background, GrayLevel[0.93`]], Rule[FrameStyle, \
Directive[Thickness[Tiny], GrayLevel[0.7`]]], Rule[Axes, False], \
Rule[AspectRatio, 1], Rule[ImageSize, Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]], Rule[Frame, True], \
Rule[FrameTicks, None], Rule[FrameStyle, Directive[Opacity[0.5`], \
Thickness[Tiny], RGBColor[0.368417`, 0.506779`, 0.709798`]]]], \
GridBox[List[List[RowBox[List[TagBox[\\\"\\\\\\\"Length: \\\\\\\"\\\", \
\\\"SummaryItemAnnotation\\\"], \\\"\\\\[InvisibleSpace]\\\", \
TagBox[\\\"1\\\", \\\"SummaryItem\\\"]]]]], Rule[GridBoxAlignment, List[Rule[\
\\\"Columns\\\", List[List[Left]]], Rule[\\\"Rows\\\", \
List[List[Automatic]]]]], Rule[AutoDelete, False], Rule[GridBoxItemSize, \
List[Rule[\\\"Columns\\\", List[List[Automatic]]], Rule[\\\"Rows\\\", \
List[List[Automatic]]]]], Rule[GridBoxSpacings, List[Rule[\\\"Columns\\\", \
List[List[2]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaseStyle, \
List[Rule[ShowStringCharacters, False], Rule[NumberMarks, False], \
Rule[PrintPrecision, 3], Rule[ShowSyntaxStyles, False]]]]]], \
Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", List[List[Left]]], \
Rule[\\\"Rows\\\", List[List[Top]]]]], Rule[AutoDelete, False], \
Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", List[List[Automatic]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaselinePosition, List[1, \
1]]]], Rule[True, \
GridBox[List[List[PaneBox[ButtonBox[DynamicBox[FEPrivate`FrontEndResource[\\\"\
FEBitmaps\\\", \\\"SummaryBoxCloser\\\"]], RuleDelayed[ButtonFunction, \
Set[Typeset`open$$, False]], Rule[Appearance, None], Rule[BaseStyle, List[]], \
Rule[Evaluator, Automatic], Rule[Method, \\\"Preemptive\\\"]], \
Rule[Alignment, List[Center, Center]], Rule[ImageSize, \
Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]]], \
GraphicsBox[List[GrayLevel[0.5`], PolygonBox[List[List[0.25`, 0.5`], \
List[0.05`, 0.35`], List[0.15`, 0.35`], List[0.35`, 0.5`], List[0.15`, \
0.65`], List[0.05`, 0.65`]]], PolygonBox[List[List[0.4`, 0.5`], List[0.2`, \
0.35`], List[0.35`, 0.35`], List[0.55`, 0.5`], List[0.35`, 0.65`], List[0.2`, \
0.65`]]], PolygonBox[List[List[0.95`, 0.5`], List[0.55`, 0.1`], List[0.6`, \
0.35`], List[0.4`, 0.35`], List[0.6`, 0.5`], List[0.4`, 0.65`], List[0.6`, \
0.65`], List[0.55`, 0.9`]]]], Rule[PlotRange, List[List[-0.05`, 1.05`], \
List[-0.05`, 1.05`]]], Rule[Background, GrayLevel[0.93`]], Rule[FrameStyle, \
Directive[Thickness[Tiny], GrayLevel[0.7`]]], Rule[Axes, False], \
Rule[AspectRatio, 1], Rule[ImageSize, Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]], Rule[Frame, True], \
Rule[FrameTicks, None], Rule[FrameStyle, Directive[Opacity[0.5`], \
Thickness[Tiny], RGBColor[0.368417`, 0.506779`, 0.709798`]]]], \
GridBox[List[List[RowBox[List[TagBox[\\\"\\\\\\\"Length: \\\\\\\"\\\", \
\\\"SummaryItemAnnotation\\\"], \\\"\\\\[InvisibleSpace]\\\", \
TagBox[\\\"1\\\", \\\"SummaryItem\\\"]]]], List[RowBox[List[TagBox[\\\"\\\\\\\
\"Rules:\\\\\\\"\\\", \\\"SummaryItemAnnotation\\\"], \
\\\"\\\\[InvisibleSpace]\\\", TagBox[\\\"\\\\\\\"\\\\\\\"\\\", \
\\\"SummaryItem\\\"]]]], \
List[TagBox[TagBox[GridBox[List[List[RowBox[List[RowBox[List[\\\"f\\\", \\\"[\
\\\", RowBox[List[\\\"x_Integer\\\", \\\",\\\", \\\"y_Real\\\"]], \
\\\"]\\\"]], \\\"\\\\[RuleDelayed]\\\", RowBox[List[\\\"x\\\", \\\"+\\\", \
\\\"y\\\"]]]]]], Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", \
List[List[Left]]]]], Rule[DefaultBaseStyle, \\\"Column\\\"], \
Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", List[List[Automatic]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]]], \\\"Column\\\"], \
\\\"SummaryItem\\\"]]], Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", \
List[List[Left]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]], \
Rule[AutoDelete, False], Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", \
List[List[Automatic]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]], \
Rule[GridBoxSpacings, List[Rule[\\\"Columns\\\", List[List[2]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaseStyle, \
List[Rule[ShowStringCharacters, False], Rule[NumberMarks, False], \
Rule[PrintPrecision, 3], Rule[ShowSyntaxStyles, False]]]]]], \
Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", List[List[Left]]], \
Rule[\\\"Rows\\\", List[List[Top]]]]], Rule[AutoDelete, False], \
Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", List[List[Automatic]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaselinePosition, List[1, \
1]]]]], Dynamic[Typeset`open$$], Rule[ImageSize, Automatic]]], \
\\\"SummaryPanel\\\"], RuleDelayed[DynamicModuleValues, List[]]], \
\\\"]\\\"}], Dispatch[List[RuleDelayed[f[Pattern[x, Blank[Integer]], \
Pattern[y, Blank[Real]]], Plus[x, y]]]], Rule[Selectable, False], \
Rule[Editable, False], Rule[SelectWithContents, True]]\\) cannot be used as a \
part specification.\"", 2, 1, 3, 30817890461013956503, "Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.905115259023024*^9, 3.905115375015884*^9,
3.9132974798812027`*^9, 3.913885800231271*^9},
CellLabel->
"During evaluation of \
In[1]:=",ExpressionUUID->"92542282-a632-4584-a599-79898623cff9"],
Cell[BoxData[
TemplateBox[{
"First", "normal",
"\"Nonatomic expression expected at position \
\\!\\(\\*RowBox[{\\\"1\\\"}]\\) in \\!\\(\\*RowBox[{\\\"First\\\", \\\"[\\\", \
\\\"1\\\", \\\"]\\\"}]\\).\"", 2, 1, 4, 30817890461013956503, "Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.905115259023024*^9, 3.905115375015884*^9,
3.9132974798812027`*^9, 3.913885800257324*^9},
CellLabel->
"During evaluation of \
In[1]:=",ExpressionUUID->"31106d60-0113-4df9-980d-72b6db652520"],
Cell[BoxData[
TemplateBox[{
"First", "normal",
"\"Nonatomic expression expected at position \
\\!\\(\\*RowBox[{\\\"1\\\"}]\\) in \\!\\(\\*RowBox[{\\\"First\\\", \\\"[\\\", \
InterpretationBox[RowBox[{TagBox[\\\"Dispatch\\\", \\\"SummaryHead\\\"], \
\\\"[\\\", DynamicModuleBox[{Typeset`open$$ = False, \
Set[Typeset`embedState$$, \\\"Ready\\\"]}, \
TemplateBox[List[PaneSelectorBox[List[Rule[False, \
GridBox[List[List[PaneBox[ButtonBox[DynamicBox[FEPrivate`FrontEndResource[\\\"\
FEBitmaps\\\", \\\"SummaryBoxOpener\\\"]], RuleDelayed[ButtonFunction, \
Set[Typeset`open$$, True]], Rule[Appearance, None], Rule[BaseStyle, List[]], \
Rule[Evaluator, Automatic], Rule[Method, \\\"Preemptive\\\"]], \
Rule[Alignment, List[Center, Center]], Rule[ImageSize, \
Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]]], \
GraphicsBox[List[GrayLevel[0.5`], PolygonBox[List[List[0.25`, 0.5`], \
List[0.05`, 0.35`], List[0.15`, 0.35`], List[0.35`, 0.5`], List[0.15`, \
0.65`], List[0.05`, 0.65`]]], PolygonBox[List[List[0.4`, 0.5`], List[0.2`, \
0.35`], List[0.35`, 0.35`], List[0.55`, 0.5`], List[0.35`, 0.65`], List[0.2`, \
0.65`]]], PolygonBox[List[List[0.95`, 0.5`], List[0.55`, 0.1`], List[0.6`, \
0.35`], List[0.4`, 0.35`], List[0.6`, 0.5`], List[0.4`, 0.65`], List[0.6`, \
0.65`], List[0.55`, 0.9`]]]], Rule[PlotRange, List[List[-0.05`, 1.05`], \
List[-0.05`, 1.05`]]], Rule[Background, GrayLevel[0.93`]], Rule[FrameStyle, \
Directive[Thickness[Tiny], GrayLevel[0.7`]]], Rule[Axes, False], \
Rule[AspectRatio, 1], Rule[ImageSize, Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]], Rule[Frame, True], \
Rule[FrameTicks, None], Rule[FrameStyle, Directive[Opacity[0.5`], \
Thickness[Tiny], RGBColor[0.368417`, 0.506779`, 0.709798`]]]], \
GridBox[List[List[RowBox[List[TagBox[\\\"\\\\\\\"Length: \\\\\\\"\\\", \
\\\"SummaryItemAnnotation\\\"], \\\"\\\\[InvisibleSpace]\\\", \
TagBox[\\\"1\\\", \\\"SummaryItem\\\"]]]]], Rule[GridBoxAlignment, List[Rule[\
\\\"Columns\\\", List[List[Left]]], Rule[\\\"Rows\\\", \
List[List[Automatic]]]]], Rule[AutoDelete, False], Rule[GridBoxItemSize, \
List[Rule[\\\"Columns\\\", List[List[Automatic]]], Rule[\\\"Rows\\\", \
List[List[Automatic]]]]], Rule[GridBoxSpacings, List[Rule[\\\"Columns\\\", \
List[List[2]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaseStyle, \
List[Rule[ShowStringCharacters, False], Rule[NumberMarks, False], \
Rule[PrintPrecision, 3], Rule[ShowSyntaxStyles, False]]]]]], \
Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", List[List[Left]]], \
Rule[\\\"Rows\\\", List[List[Top]]]]], Rule[AutoDelete, False], \
Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", List[List[Automatic]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaselinePosition, List[1, \
1]]]], Rule[True, \
GridBox[List[List[PaneBox[ButtonBox[DynamicBox[FEPrivate`FrontEndResource[\\\"\
FEBitmaps\\\", \\\"SummaryBoxCloser\\\"]], RuleDelayed[ButtonFunction, \
Set[Typeset`open$$, False]], Rule[Appearance, None], Rule[BaseStyle, List[]], \
Rule[Evaluator, Automatic], Rule[Method, \\\"Preemptive\\\"]], \
Rule[Alignment, List[Center, Center]], Rule[ImageSize, \
Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]]], \
GraphicsBox[List[GrayLevel[0.5`], PolygonBox[List[List[0.25`, 0.5`], \
List[0.05`, 0.35`], List[0.15`, 0.35`], List[0.35`, 0.5`], List[0.15`, \
0.65`], List[0.05`, 0.65`]]], PolygonBox[List[List[0.4`, 0.5`], List[0.2`, \
0.35`], List[0.35`, 0.35`], List[0.55`, 0.5`], List[0.35`, 0.65`], List[0.2`, \
0.65`]]], PolygonBox[List[List[0.95`, 0.5`], List[0.55`, 0.1`], List[0.6`, \
0.35`], List[0.4`, 0.35`], List[0.6`, 0.5`], List[0.4`, 0.65`], List[0.6`, \
0.65`], List[0.55`, 0.9`]]]], Rule[PlotRange, List[List[-0.05`, 1.05`], \
List[-0.05`, 1.05`]]], Rule[Background, GrayLevel[0.93`]], Rule[FrameStyle, \
Directive[Thickness[Tiny], GrayLevel[0.7`]]], Rule[Axes, False], \
Rule[AspectRatio, 1], Rule[ImageSize, Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]], Rule[Frame, True], \
Rule[FrameTicks, None], Rule[FrameStyle, Directive[Opacity[0.5`], \
Thickness[Tiny], RGBColor[0.368417`, 0.506779`, 0.709798`]]]], \
GridBox[List[List[RowBox[List[TagBox[\\\"\\\\\\\"Length: \\\\\\\"\\\", \
\\\"SummaryItemAnnotation\\\"], \\\"\\\\[InvisibleSpace]\\\", \
TagBox[\\\"1\\\", \\\"SummaryItem\\\"]]]], List[RowBox[List[TagBox[\\\"\\\\\\\
\"Rules:\\\\\\\"\\\", \\\"SummaryItemAnnotation\\\"], \
\\\"\\\\[InvisibleSpace]\\\", TagBox[\\\"\\\\\\\"\\\\\\\"\\\", \
\\\"SummaryItem\\\"]]]], \
List[TagBox[TagBox[GridBox[List[List[RowBox[List[RowBox[List[\\\"f\\\", \\\"[\
\\\", RowBox[List[\\\"x_Integer\\\", \\\",\\\", \\\"y_Real\\\"]], \
\\\"]\\\"]], \\\"\\\\[RuleDelayed]\\\", RowBox[List[\\\"x\\\", \\\"+\\\", \
\\\"y\\\"]]]]]], Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", \
List[List[Left]]]]], Rule[DefaultBaseStyle, \\\"Column\\\"], \
Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", List[List[Automatic]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]]], \\\"Column\\\"], \
\\\"SummaryItem\\\"]]], Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", \
List[List[Left]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]], \
Rule[AutoDelete, False], Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", \
List[List[Automatic]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]], \
Rule[GridBoxSpacings, List[Rule[\\\"Columns\\\", List[List[2]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaseStyle, \
List[Rule[ShowStringCharacters, False], Rule[NumberMarks, False], \
Rule[PrintPrecision, 3], Rule[ShowSyntaxStyles, False]]]]]], \
Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", List[List[Left]]], \
Rule[\\\"Rows\\\", List[List[Top]]]]], Rule[AutoDelete, False], \
Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", List[List[Automatic]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaselinePosition, List[1, \
1]]]]], Dynamic[Typeset`open$$], Rule[ImageSize, Automatic]]], \
\\\"SummaryPanel\\\"], RuleDelayed[DynamicModuleValues, List[]]], \
\\\"]\\\"}], Dispatch[List[RuleDelayed[f[Pattern[x, Blank[Integer]], \
Pattern[y, Blank[Real]]], Plus[x, y]]]], Rule[Selectable, False], \
Rule[Editable, False], Rule[SelectWithContents, True]], \\\"]\\\"}]\\).\"", 2,
1, 5, 30817890461013956503, "Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.905115259023024*^9, 3.905115375015884*^9,
3.9132974798812027`*^9, 3.913885800259523*^9},
CellLabel->
"During evaluation of \
In[1]:=",ExpressionUUID->"81bb3704-497a-4ff1-a0bf-15ecb85c8db5"],
Cell[BoxData[
TemplateBox[{
"Part", "pkspec1",
"\"The expression \\!\\(\\*RowBox[{\\\"First\\\", \\\"[\\\", \
InterpretationBox[RowBox[{TagBox[\\\"Dispatch\\\", \\\"SummaryHead\\\"], \
\\\"[\\\", DynamicModuleBox[{Typeset`open$$ = False, \
Set[Typeset`embedState$$, \\\"Ready\\\"]}, \
TemplateBox[List[PaneSelectorBox[List[Rule[False, \
GridBox[List[List[PaneBox[ButtonBox[DynamicBox[FEPrivate`FrontEndResource[\\\"\
FEBitmaps\\\", \\\"SummaryBoxOpener\\\"]], RuleDelayed[ButtonFunction, \
Set[Typeset`open$$, True]], Rule[Appearance, None], Rule[BaseStyle, List[]], \
Rule[Evaluator, Automatic], Rule[Method, \\\"Preemptive\\\"]], \
Rule[Alignment, List[Center, Center]], Rule[ImageSize, \
Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]]], \
GraphicsBox[List[GrayLevel[0.5`], PolygonBox[List[List[0.25`, 0.5`], \
List[0.05`, 0.35`], List[0.15`, 0.35`], List[0.35`, 0.5`], List[0.15`, \
0.65`], List[0.05`, 0.65`]]], PolygonBox[List[List[0.4`, 0.5`], List[0.2`, \
0.35`], List[0.35`, 0.35`], List[0.55`, 0.5`], List[0.35`, 0.65`], List[0.2`, \
0.65`]]], PolygonBox[List[List[0.95`, 0.5`], List[0.55`, 0.1`], List[0.6`, \
0.35`], List[0.4`, 0.35`], List[0.6`, 0.5`], List[0.4`, 0.65`], List[0.6`, \
0.65`], List[0.55`, 0.9`]]]], Rule[PlotRange, List[List[-0.05`, 1.05`], \
List[-0.05`, 1.05`]]], Rule[Background, GrayLevel[0.93`]], Rule[FrameStyle, \
Directive[Thickness[Tiny], GrayLevel[0.7`]]], Rule[Axes, False], \
Rule[AspectRatio, 1], Rule[ImageSize, Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]], Rule[Frame, True], \
Rule[FrameTicks, None], Rule[FrameStyle, Directive[Opacity[0.5`], \
Thickness[Tiny], RGBColor[0.368417`, 0.506779`, 0.709798`]]]], \
GridBox[List[List[RowBox[List[TagBox[\\\"\\\\\\\"Length: \\\\\\\"\\\", \
\\\"SummaryItemAnnotation\\\"], \\\"\\\\[InvisibleSpace]\\\", \
TagBox[\\\"1\\\", \\\"SummaryItem\\\"]]]]], Rule[GridBoxAlignment, List[Rule[\
\\\"Columns\\\", List[List[Left]]], Rule[\\\"Rows\\\", \
List[List[Automatic]]]]], Rule[AutoDelete, False], Rule[GridBoxItemSize, \
List[Rule[\\\"Columns\\\", List[List[Automatic]]], Rule[\\\"Rows\\\", \
List[List[Automatic]]]]], Rule[GridBoxSpacings, List[Rule[\\\"Columns\\\", \
List[List[2]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaseStyle, \
List[Rule[ShowStringCharacters, False], Rule[NumberMarks, False], \
Rule[PrintPrecision, 3], Rule[ShowSyntaxStyles, False]]]]]], \
Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", List[List[Left]]], \
Rule[\\\"Rows\\\", List[List[Top]]]]], Rule[AutoDelete, False], \
Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", List[List[Automatic]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaselinePosition, List[1, \
1]]]], Rule[True, \
GridBox[List[List[PaneBox[ButtonBox[DynamicBox[FEPrivate`FrontEndResource[\\\"\
FEBitmaps\\\", \\\"SummaryBoxCloser\\\"]], RuleDelayed[ButtonFunction, \
Set[Typeset`open$$, False]], Rule[Appearance, None], Rule[BaseStyle, List[]], \
Rule[Evaluator, Automatic], Rule[Method, \\\"Preemptive\\\"]], \
Rule[Alignment, List[Center, Center]], Rule[ImageSize, \
Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]]], \
GraphicsBox[List[GrayLevel[0.5`], PolygonBox[List[List[0.25`, 0.5`], \
List[0.05`, 0.35`], List[0.15`, 0.35`], List[0.35`, 0.5`], List[0.15`, \
0.65`], List[0.05`, 0.65`]]], PolygonBox[List[List[0.4`, 0.5`], List[0.2`, \
0.35`], List[0.35`, 0.35`], List[0.55`, 0.5`], List[0.35`, 0.65`], List[0.2`, \
0.65`]]], PolygonBox[List[List[0.95`, 0.5`], List[0.55`, 0.1`], List[0.6`, \
0.35`], List[0.4`, 0.35`], List[0.6`, 0.5`], List[0.4`, 0.65`], List[0.6`, \
0.65`], List[0.55`, 0.9`]]]], Rule[PlotRange, List[List[-0.05`, 1.05`], \
List[-0.05`, 1.05`]]], Rule[Background, GrayLevel[0.93`]], Rule[FrameStyle, \
Directive[Thickness[Tiny], GrayLevel[0.7`]]], Rule[Axes, False], \
Rule[AspectRatio, 1], Rule[ImageSize, Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]], Rule[Frame, True], \
Rule[FrameTicks, None], Rule[FrameStyle, Directive[Opacity[0.5`], \
Thickness[Tiny], RGBColor[0.368417`, 0.506779`, 0.709798`]]]], \
GridBox[List[List[RowBox[List[TagBox[\\\"\\\\\\\"Length: \\\\\\\"\\\", \
\\\"SummaryItemAnnotation\\\"], \\\"\\\\[InvisibleSpace]\\\", \
TagBox[\\\"1\\\", \\\"SummaryItem\\\"]]]], List[RowBox[List[TagBox[\\\"\\\\\\\
\"Rules:\\\\\\\"\\\", \\\"SummaryItemAnnotation\\\"], \
\\\"\\\\[InvisibleSpace]\\\", TagBox[\\\"\\\\\\\"\\\\\\\"\\\", \
\\\"SummaryItem\\\"]]]], \
List[TagBox[TagBox[GridBox[List[List[RowBox[List[RowBox[List[\\\"f\\\", \\\"[\
\\\", RowBox[List[\\\"x_Integer\\\", \\\",\\\", \\\"y_Real\\\"]], \
\\\"]\\\"]], \\\"\\\\[RuleDelayed]\\\", RowBox[List[\\\"x\\\", \\\"+\\\", \
\\\"y\\\"]]]]]], Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", \
List[List[Left]]]]], Rule[DefaultBaseStyle, \\\"Column\\\"], \
Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", List[List[Automatic]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]]], \\\"Column\\\"], \
\\\"SummaryItem\\\"]]], Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", \
List[List[Left]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]], \
Rule[AutoDelete, False], Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", \
List[List[Automatic]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]], \
Rule[GridBoxSpacings, List[Rule[\\\"Columns\\\", List[List[2]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaseStyle, \
List[Rule[ShowStringCharacters, False], Rule[NumberMarks, False], \
Rule[PrintPrecision, 3], Rule[ShowSyntaxStyles, False]]]]]], \
Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", List[List[Left]]], \
Rule[\\\"Rows\\\", List[List[Top]]]]], Rule[AutoDelete, False], \
Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", List[List[Automatic]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaselinePosition, List[1, \
1]]]]], Dynamic[Typeset`open$$], Rule[ImageSize, Automatic]]], \
\\\"SummaryPanel\\\"], RuleDelayed[DynamicModuleValues, List[]]], \
\\\"]\\\"}], Dispatch[List[RuleDelayed[f[Pattern[x, Blank[Integer]], \
Pattern[y, Blank[Real]]], Plus[x, y]]]], Rule[Selectable, False], \
Rule[Editable, False], Rule[SelectWithContents, True]], \\\"]\\\"}]\\) cannot \
be used as a part specification.\"", 2, 1, 6, 30817890461013956503, "Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.905115259023024*^9, 3.905115375015884*^9,
3.9132974798812027`*^9, 3.913885800264003*^9},
CellLabel->
"During evaluation of \
In[1]:=",ExpressionUUID->"44a1d7ae-0728-4731-9265-cb5c9fccae57"],
Cell[BoxData[
TemplateBox[{
"First", "normal",
"\"Nonatomic expression expected at position \
\\!\\(\\*RowBox[{\\\"1\\\"}]\\) in \\!\\(\\*RowBox[{\\\"First\\\", \\\"[\\\", \
\\\"1\\\", \\\"]\\\"}]\\).\"", 2, 1, 7, 30817890461013956503, "Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.905115259023024*^9, 3.905115375015884*^9,
3.9132974798812027`*^9, 3.9138858002683067`*^9},
CellLabel->
"During evaluation of \
In[1]:=",ExpressionUUID->"6a4239f8-19ea-4d0e-85ed-dccafff20169"],
Cell[BoxData[
TemplateBox[{
"General", "stop",
"\"Further output of \\!\\(\\*StyleBox[RowBox[{\\\"First\\\", \\\"::\\\", \
\\\"normal\\\"}], \\\"MessageName\\\"]\\) will be suppressed during this \
calculation.\"", 2, 1, 8, 30817890461013956503, "Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.905115259023024*^9, 3.905115375015884*^9,
3.9132974798812027`*^9, 3.9138858002700577`*^9},
CellLabel->
"During evaluation of \
In[1]:=",ExpressionUUID->"1d7349de-2bab-4256-9a77-7a98d855d552"],
Cell[BoxData[
TemplateBox[{
"Part", "pkspec1",
"\"The expression \\!\\(\\*RowBox[{\\\"First\\\", \\\"[\\\", \
InterpretationBox[RowBox[{TagBox[\\\"Dispatch\\\", \\\"SummaryHead\\\"], \
\\\"[\\\", DynamicModuleBox[{Typeset`open$$ = False, \
Set[Typeset`embedState$$, \\\"Ready\\\"]}, \
TemplateBox[List[PaneSelectorBox[List[Rule[False, \
GridBox[List[List[PaneBox[ButtonBox[DynamicBox[FEPrivate`FrontEndResource[\\\"\
FEBitmaps\\\", \\\"SummaryBoxOpener\\\"]], RuleDelayed[ButtonFunction, \
Set[Typeset`open$$, True]], Rule[Appearance, None], Rule[BaseStyle, List[]], \
Rule[Evaluator, Automatic], Rule[Method, \\\"Preemptive\\\"]], \
Rule[Alignment, List[Center, Center]], Rule[ImageSize, \
Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]]], \
GraphicsBox[List[GrayLevel[0.5`], PolygonBox[List[List[0.25`, 0.5`], \
List[0.05`, 0.35`], List[0.15`, 0.35`], List[0.35`, 0.5`], List[0.15`, \
0.65`], List[0.05`, 0.65`]]], PolygonBox[List[List[0.4`, 0.5`], List[0.2`, \
0.35`], List[0.35`, 0.35`], List[0.55`, 0.5`], List[0.35`, 0.65`], List[0.2`, \
0.65`]]], PolygonBox[List[List[0.95`, 0.5`], List[0.55`, 0.1`], List[0.6`, \
0.35`], List[0.4`, 0.35`], List[0.6`, 0.5`], List[0.4`, 0.65`], List[0.6`, \
0.65`], List[0.55`, 0.9`]]]], Rule[PlotRange, List[List[-0.05`, 1.05`], \
List[-0.05`, 1.05`]]], Rule[Background, GrayLevel[0.93`]], Rule[FrameStyle, \
Directive[Thickness[Tiny], GrayLevel[0.7`]]], Rule[Axes, False], \
Rule[AspectRatio, 1], Rule[ImageSize, Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]], Rule[Frame, True], \
Rule[FrameTicks, None], Rule[FrameStyle, Directive[Opacity[0.5`], \
Thickness[Tiny], RGBColor[0.368417`, 0.506779`, 0.709798`]]]], \
GridBox[List[List[RowBox[List[TagBox[\\\"\\\\\\\"Length: \\\\\\\"\\\", \
\\\"SummaryItemAnnotation\\\"], \\\"\\\\[InvisibleSpace]\\\", \
TagBox[\\\"1\\\", \\\"SummaryItem\\\"]]]]], Rule[GridBoxAlignment, List[Rule[\
\\\"Columns\\\", List[List[Left]]], Rule[\\\"Rows\\\", \
List[List[Automatic]]]]], Rule[AutoDelete, False], Rule[GridBoxItemSize, \
List[Rule[\\\"Columns\\\", List[List[Automatic]]], Rule[\\\"Rows\\\", \
List[List[Automatic]]]]], Rule[GridBoxSpacings, List[Rule[\\\"Columns\\\", \
List[List[2]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaseStyle, \
List[Rule[ShowStringCharacters, False], Rule[NumberMarks, False], \
Rule[PrintPrecision, 3], Rule[ShowSyntaxStyles, False]]]]]], \
Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", List[List[Left]]], \
Rule[\\\"Rows\\\", List[List[Top]]]]], Rule[AutoDelete, False], \
Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", List[List[Automatic]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaselinePosition, List[1, \
1]]]], Rule[True, \
GridBox[List[List[PaneBox[ButtonBox[DynamicBox[FEPrivate`FrontEndResource[\\\"\
FEBitmaps\\\", \\\"SummaryBoxCloser\\\"]], RuleDelayed[ButtonFunction, \
Set[Typeset`open$$, False]], Rule[Appearance, None], Rule[BaseStyle, List[]], \
Rule[Evaluator, Automatic], Rule[Method, \\\"Preemptive\\\"]], \
Rule[Alignment, List[Center, Center]], Rule[ImageSize, \
Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]]], \
GraphicsBox[List[GrayLevel[0.5`], PolygonBox[List[List[0.25`, 0.5`], \
List[0.05`, 0.35`], List[0.15`, 0.35`], List[0.35`, 0.5`], List[0.15`, \
0.65`], List[0.05`, 0.65`]]], PolygonBox[List[List[0.4`, 0.5`], List[0.2`, \
0.35`], List[0.35`, 0.35`], List[0.55`, 0.5`], List[0.35`, 0.65`], List[0.2`, \
0.65`]]], PolygonBox[List[List[0.95`, 0.5`], List[0.55`, 0.1`], List[0.6`, \
0.35`], List[0.4`, 0.35`], List[0.6`, 0.5`], List[0.4`, 0.65`], List[0.6`, \
0.65`], List[0.55`, 0.9`]]]], Rule[PlotRange, List[List[-0.05`, 1.05`], \
List[-0.05`, 1.05`]]], Rule[Background, GrayLevel[0.93`]], Rule[FrameStyle, \
Directive[Thickness[Tiny], GrayLevel[0.7`]]], Rule[Axes, False], \
Rule[AspectRatio, 1], Rule[ImageSize, Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]], Rule[Frame, True], \
Rule[FrameTicks, None], Rule[FrameStyle, Directive[Opacity[0.5`], \
Thickness[Tiny], RGBColor[0.368417`, 0.506779`, 0.709798`]]]], \
GridBox[List[List[RowBox[List[TagBox[\\\"\\\\\\\"Length: \\\\\\\"\\\", \
\\\"SummaryItemAnnotation\\\"], \\\"\\\\[InvisibleSpace]\\\", \
TagBox[\\\"1\\\", \\\"SummaryItem\\\"]]]], List[RowBox[List[TagBox[\\\"\\\\\\\
\"Rules:\\\\\\\"\\\", \\\"SummaryItemAnnotation\\\"], \
\\\"\\\\[InvisibleSpace]\\\", TagBox[\\\"\\\\\\\"\\\\\\\"\\\", \
\\\"SummaryItem\\\"]]]], \
List[TagBox[TagBox[GridBox[List[List[RowBox[List[RowBox[List[\\\"f\\\", \\\"[\
\\\", RowBox[List[\\\"x_Integer\\\", \\\",\\\", \\\"y_Real\\\"]], \
\\\"]\\\"]], \\\"\\\\[RuleDelayed]\\\", RowBox[List[\\\"x\\\", \\\"+\\\", \
\\\"y\\\"]]]]]], Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", \
List[List[Left]]]]], Rule[DefaultBaseStyle, \\\"Column\\\"], \
Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", List[List[Automatic]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]]], \\\"Column\\\"], \
\\\"SummaryItem\\\"]]], Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", \
List[List[Left]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]], \
Rule[AutoDelete, False], Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", \
List[List[Automatic]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]], \
Rule[GridBoxSpacings, List[Rule[\\\"Columns\\\", List[List[2]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaseStyle, \
List[Rule[ShowStringCharacters, False], Rule[NumberMarks, False], \
Rule[PrintPrecision, 3], Rule[ShowSyntaxStyles, False]]]]]], \
Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", List[List[Left]]], \
Rule[\\\"Rows\\\", List[List[Top]]]]], Rule[AutoDelete, False], \
Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", List[List[Automatic]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaselinePosition, List[1, \
1]]]]], Dynamic[Typeset`open$$], Rule[ImageSize, Automatic]]], \
\\\"SummaryPanel\\\"], RuleDelayed[DynamicModuleValues, List[]]], \
\\\"]\\\"}], Dispatch[List[RuleDelayed[f[Pattern[x, Blank[Integer]], \
Pattern[y, Blank[Real]]], Plus[x, y]]]], Rule[Selectable, False], \
Rule[Editable, False], Rule[SelectWithContents, True]], \\\"]\\\"}]\\) cannot \
be used as a part specification.\"", 2, 1, 9, 30817890461013956503, "Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.905115259023024*^9, 3.905115375015884*^9,
3.9132974798812027`*^9, 3.913885800273768*^9},
CellLabel->
"During evaluation of \
In[1]:=",ExpressionUUID->"9efb1303-158a-4caa-9cd0-d5e68a39b91f"],
Cell[BoxData[
TemplateBox[{
"General", "stop",
"\"Further output of \\!\\(\\*StyleBox[RowBox[{\\\"Part\\\", \\\"::\\\", \
\\\"pkspec1\\\"}], \\\"MessageName\\\"]\\) will be suppressed during this \
calculation.\"", 2, 1, 10, 30817890461013956503, "Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.905115259023024*^9, 3.905115375015884*^9,
3.9132974798812027`*^9, 3.913885800277925*^9},
CellLabel->
"During evaluation of \
In[1]:=",ExpressionUUID->"694093cb-2093-4a89-9f9e-319e95bc2134"],
Cell[BoxData[
TemplateBox[{
"SubsetQ", "heads",
"\"Heads \\!\\(\\*RowBox[{\\\"List\\\"}]\\) and \
\\!\\(\\*RowBox[{\\\"Part\\\"}]\\) at positions \
\\!\\(\\*RowBox[{\\\"1\\\"}]\\) and \\!\\(\\*RowBox[{\\\"2\\\"}]\\) are \
expected to be the same.\"", 2, 1, 11, 30817890461013956503, "Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.905115259023024*^9, 3.905115375015884*^9,
3.9132974798812027`*^9, 3.913885800292735*^9},
CellLabel->
"During evaluation of \
In[1]:=",ExpressionUUID->"436560c5-6da3-412a-995f-6dc3ad313f89"],
Cell[BoxData[
TemplateBox[{
"Part", "partd",
"\"Part specification \\!\\(\\*RowBox[{InterpretationBox[RowBox[{TagBox[\\\
\"Dispatch\\\", \\\"SummaryHead\\\"], \\\"[\\\", \
DynamicModuleBox[{Typeset`open$$ = False, Set[Typeset`embedState$$, \\\"Ready\
\\\"]}, TemplateBox[List[PaneSelectorBox[List[Rule[False, \
GridBox[List[List[PaneBox[ButtonBox[DynamicBox[FEPrivate`FrontEndResource[\\\"\
FEBitmaps\\\", \\\"SummaryBoxOpener\\\"]], RuleDelayed[ButtonFunction, \
Set[Typeset`open$$, True]], Rule[Appearance, None], Rule[BaseStyle, List[]], \
Rule[Evaluator, Automatic], Rule[Method, \\\"Preemptive\\\"]], \
Rule[Alignment, List[Center, Center]], Rule[ImageSize, \
Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]]], \
GraphicsBox[List[GrayLevel[0.5`], PolygonBox[List[List[0.25`, 0.5`], \
List[0.05`, 0.35`], List[0.15`, 0.35`], List[0.35`, 0.5`], List[0.15`, \
0.65`], List[0.05`, 0.65`]]], PolygonBox[List[List[0.4`, 0.5`], List[0.2`, \
0.35`], List[0.35`, 0.35`], List[0.55`, 0.5`], List[0.35`, 0.65`], List[0.2`, \
0.65`]]], PolygonBox[List[List[0.95`, 0.5`], List[0.55`, 0.1`], List[0.6`, \
0.35`], List[0.4`, 0.35`], List[0.6`, 0.5`], List[0.4`, 0.65`], List[0.6`, \
0.65`], List[0.55`, 0.9`]]]], Rule[PlotRange, List[List[-0.05`, 1.05`], \
List[-0.05`, 1.05`]]], Rule[Background, GrayLevel[0.93`]], Rule[FrameStyle, \
Directive[Thickness[Tiny], GrayLevel[0.7`]]], Rule[Axes, False], \
Rule[AspectRatio, 1], Rule[ImageSize, Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]], Rule[Frame, True], \
Rule[FrameTicks, None], Rule[FrameStyle, Directive[Opacity[0.5`], \
Thickness[Tiny], RGBColor[0.368417`, 0.506779`, 0.709798`]]]], \
GridBox[List[List[RowBox[List[TagBox[\\\"\\\\\\\"Length: \\\\\\\"\\\", \
\\\"SummaryItemAnnotation\\\"], \\\"\\\\[InvisibleSpace]\\\", \
TagBox[\\\"3\\\", \\\"SummaryItem\\\"]]]]], Rule[GridBoxAlignment, List[Rule[\
\\\"Columns\\\", List[List[Left]]], Rule[\\\"Rows\\\", \
List[List[Automatic]]]]], Rule[AutoDelete, False], Rule[GridBoxItemSize, \
List[Rule[\\\"Columns\\\", List[List[Automatic]]], Rule[\\\"Rows\\\", \
List[List[Automatic]]]]], Rule[GridBoxSpacings, List[Rule[\\\"Columns\\\", \
List[List[2]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaseStyle, \
List[Rule[ShowStringCharacters, False], Rule[NumberMarks, False], \
Rule[PrintPrecision, 3], Rule[ShowSyntaxStyles, False]]]]]], \
Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", List[List[Left]]], \
Rule[\\\"Rows\\\", List[List[Top]]]]], Rule[AutoDelete, False], \
Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", List[List[Automatic]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaselinePosition, List[1, \
1]]]], Rule[True, \
GridBox[List[List[PaneBox[ButtonBox[DynamicBox[FEPrivate`FrontEndResource[\\\"\
FEBitmaps\\\", \\\"SummaryBoxCloser\\\"]], RuleDelayed[ButtonFunction, \
Set[Typeset`open$$, False]], Rule[Appearance, None], Rule[BaseStyle, List[]], \
Rule[Evaluator, Automatic], Rule[Method, \\\"Preemptive\\\"]], \
Rule[Alignment, List[Center, Center]], Rule[ImageSize, \
Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]]], \
GraphicsBox[List[GrayLevel[0.5`], PolygonBox[List[List[0.25`, 0.5`], \
List[0.05`, 0.35`], List[0.15`, 0.35`], List[0.35`, 0.5`], List[0.15`, \
0.65`], List[0.05`, 0.65`]]], PolygonBox[List[List[0.4`, 0.5`], List[0.2`, \
0.35`], List[0.35`, 0.35`], List[0.55`, 0.5`], List[0.35`, 0.65`], List[0.2`, \
0.65`]]], PolygonBox[List[List[0.95`, 0.5`], List[0.55`, 0.1`], List[0.6`, \
0.35`], List[0.4`, 0.35`], List[0.6`, 0.5`], List[0.4`, 0.65`], List[0.6`, \
0.65`], List[0.55`, 0.9`]]]], Rule[PlotRange, List[List[-0.05`, 1.05`], \
List[-0.05`, 1.05`]]], Rule[Background, GrayLevel[0.93`]], Rule[FrameStyle, \
Directive[Thickness[Tiny], GrayLevel[0.7`]]], Rule[Axes, False], \
Rule[AspectRatio, 1], Rule[ImageSize, Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]], Rule[Frame, True], \
Rule[FrameTicks, None], Rule[FrameStyle, Directive[Opacity[0.5`], \
Thickness[Tiny], RGBColor[0.368417`, 0.506779`, 0.709798`]]]], \
GridBox[List[List[RowBox[List[TagBox[\\\"\\\\\\\"Length: \\\\\\\"\\\", \
\\\"SummaryItemAnnotation\\\"], \\\"\\\\[InvisibleSpace]\\\", \
TagBox[\\\"3\\\", \\\"SummaryItem\\\"]]]], List[RowBox[List[TagBox[\\\"\\\\\\\
\"Rules:\\\\\\\"\\\", \\\"SummaryItemAnnotation\\\"], \
\\\"\\\\[InvisibleSpace]\\\", TagBox[\\\"\\\\\\\"\\\\\\\"\\\", \
\\\"SummaryItem\\\"]]]], \
List[TagBox[TagBox[GridBox[List[List[RowBox[List[RowBox[List[\\\"f\\\", \\\"[\
\\\", RowBox[List[\\\"x_Integer\\\", \\\",\\\", \\\"y_Real\\\"]], \
\\\"]\\\"]], \\\"\\\\[RuleDelayed]\\\", RowBox[List[\\\"x\\\", \\\"+\\\", \
\\\"y\\\"]]]]], List[RowBox[List[RowBox[List[\\\"g\\\", \\\"[\\\", \
\\\"s_String\\\", \\\"]\\\"]], \\\"\\\\[RuleDelayed]\\\", \\\"s\\\"]]], \
List[RowBox[List[RowBox[List[\\\"h\\\", \\\"[\\\", \\\"s2_String\\\", \\\"]\\\
\"]], \\\"\\\\[RuleDelayed]\\\", \\\"s2\\\"]]]], Rule[GridBoxAlignment, \
List[Rule[\\\"Columns\\\", List[List[Left]]]]], Rule[DefaultBaseStyle, \
\\\"Column\\\"], Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", \
List[List[Automatic]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]]], \
\\\"Column\\\"], \\\"SummaryItem\\\"]]], Rule[GridBoxAlignment, \
List[Rule[\\\"Columns\\\", List[List[Left]]], Rule[\\\"Rows\\\", \
List[List[Automatic]]]]], Rule[AutoDelete, False], Rule[GridBoxItemSize, \
List[Rule[\\\"Columns\\\", List[List[Automatic]]], Rule[\\\"Rows\\\", \
List[List[Automatic]]]]], Rule[GridBoxSpacings, List[Rule[\\\"Columns\\\", \
List[List[2]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaseStyle, \
List[Rule[ShowStringCharacters, False], Rule[NumberMarks, False], \
Rule[PrintPrecision, 3], Rule[ShowSyntaxStyles, False]]]]]], \
Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", List[List[Left]]], \
Rule[\\\"Rows\\\", List[List[Top]]]]], Rule[AutoDelete, False], \
Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", List[List[Automatic]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaselinePosition, List[1, \
1]]]]], Dynamic[Typeset`open$$], Rule[ImageSize, Automatic]]], \
\\\"SummaryPanel\\\"], RuleDelayed[DynamicModuleValues, List[]]], \
\\\"]\\\"}], Dispatch[List[RuleDelayed[f[Pattern[x, Blank[Integer]], \
Pattern[y, Blank[Real]]], Plus[x, y]], RuleDelayed[g[Pattern[s, \
Blank[String]]], s], RuleDelayed[h[Pattern[s2, Blank[String]]], s2]]], \
Rule[Selectable, False], Rule[Editable, False], Rule[SelectWithContents, \
True]], \\\"\[LeftDoubleBracket]\\\", \\\"1\\\", \
\\\"\[RightDoubleBracket]\\\"}]\\) is longer than depth of object.\"", 2, 1,
12, 30817890461013956503, "Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.905115259023024*^9, 3.905115375015884*^9,
3.9132974798812027`*^9, 3.913885800297131*^9},
CellLabel->
"During evaluation of \
In[1]:=",ExpressionUUID->"f34f83d9-da2e-4807-b610-f8ec3e6bf8be"],
Cell[BoxData[
TemplateBox[{
"General", "stop",
"\"Further output of \\!\\(\\*StyleBox[RowBox[{\\\"Part\\\", \\\"::\\\", \
\\\"partd\\\"}], \\\"MessageName\\\"]\\) will be suppressed during this \
calculation.\"", 2, 1, 13, 30817890461013956503, "Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.905115259023024*^9, 3.905115375015884*^9,
3.9132974798812027`*^9, 3.913885800301453*^9},
CellLabel->
"During evaluation of \
In[1]:=",ExpressionUUID->"881b886e-8814-448c-ae04-2665d8fd863f"],
Cell[BoxData[
TemplateBox[{
"SubsetQ", "heads",
"\"Heads \\!\\(\\*RowBox[{\\\"List\\\"}]\\) and \
\\!\\(\\*RowBox[{\\\"Part\\\"}]\\) at positions \
\\!\\(\\*RowBox[{\\\"1\\\"}]\\) and \\!\\(\\*RowBox[{\\\"2\\\"}]\\) are \
expected to be the same.\"", 2, 1, 14, 30817890461013956503, "Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.905115259023024*^9, 3.905115375015884*^9,
3.9132974798812027`*^9, 3.913885800303155*^9},
CellLabel->
"During evaluation of \
In[1]:=",ExpressionUUID->"81224dc5-35a2-49c8-806a-04ac2ba393c6"],
Cell[BoxData[
TemplateBox[{
"SubsetQ", "heads",
"\"Heads \\!\\(\\*RowBox[{\\\"List\\\"}]\\) and \
\\!\\(\\*RowBox[{\\\"Part\\\"}]\\) at positions \
\\!\\(\\*RowBox[{\\\"1\\\"}]\\) and \\!\\(\\*RowBox[{\\\"2\\\"}]\\) are \
expected to be the same.\"", 2, 1, 15, 30817890461013956503, "Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.905115259023024*^9, 3.905115375015884*^9,
3.9132974798812027`*^9, 3.9138858003074903`*^9},
CellLabel->
"During evaluation of \
In[1]:=",ExpressionUUID->"517d29e9-e0fc-4a60-b2da-9772ecfb281a"],
Cell[BoxData[
TemplateBox[{
"General", "stop",
"\"Further output of \\!\\(\\*StyleBox[RowBox[{\\\"SubsetQ\\\", \
\\\"::\\\", \\\"heads\\\"}], \\\"MessageName\\\"]\\) will be suppressed \
during this calculation.\"", 2, 1, 16, 30817890461013956503, "Local"},
"MessageTemplate"]], "Message", "MSG",
CellChangeTimes->{3.905115259023024*^9, 3.905115375015884*^9,
3.9132974798812027`*^9, 3.913885800309061*^9},
CellLabel->
"During evaluation of \
In[1]:=",ExpressionUUID->"cdf6e3eb-1d43-4d31-9952-534ce9ff78de"],
Cell[BoxData[
TemplateBox[{
"Append", "normal",
"\"Nonatomic expression expected at position \
\\!\\(\\*RowBox[{\\\"1\\\"}]\\) in \\!\\(\\*RowBox[{\\\"Append\\\", \
\\\"[\\\", RowBox[{InterpretationBox[RowBox[{TagBox[\\\"Dispatch\\\", \
\\\"SummaryHead\\\"], \\\"[\\\", DynamicModuleBox[{Typeset`open$$ = False, \
Set[Typeset`embedState$$, \\\"Ready\\\"]}, \
TemplateBox[List[PaneSelectorBox[List[Rule[False, \
GridBox[List[List[PaneBox[ButtonBox[DynamicBox[FEPrivate`FrontEndResource[\\\"\
FEBitmaps\\\", \\\"SummaryBoxOpener\\\"]], RuleDelayed[ButtonFunction, \
Set[Typeset`open$$, True]], Rule[Appearance, None], Rule[BaseStyle, List[]], \
Rule[Evaluator, Automatic], Rule[Method, \\\"Preemptive\\\"]], \
Rule[Alignment, List[Center, Center]], Rule[ImageSize, \
Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]]], \
GraphicsBox[List[GrayLevel[0.5`], PolygonBox[List[List[0.25`, 0.5`], \
List[0.05`, 0.35`], List[0.15`, 0.35`], List[0.35`, 0.5`], List[0.15`, \
0.65`], List[0.05`, 0.65`]]], PolygonBox[List[List[0.4`, 0.5`], List[0.2`, \
0.35`], List[0.35`, 0.35`], List[0.55`, 0.5`], List[0.35`, 0.65`], List[0.2`, \
0.65`]]], PolygonBox[List[List[0.95`, 0.5`], List[0.55`, 0.1`], List[0.6`, \
0.35`], List[0.4`, 0.35`], List[0.6`, 0.5`], List[0.4`, 0.65`], List[0.6`, \
0.65`], List[0.55`, 0.9`]]]], Rule[PlotRange, List[List[-0.05`, 1.05`], \
List[-0.05`, 1.05`]]], Rule[Background, GrayLevel[0.93`]], Rule[FrameStyle, \
Directive[Thickness[Tiny], GrayLevel[0.7`]]], Rule[Axes, False], \
Rule[AspectRatio, 1], Rule[ImageSize, Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]], Rule[Frame, True], \
Rule[FrameTicks, None], Rule[FrameStyle, Directive[Opacity[0.5`], \
Thickness[Tiny], RGBColor[0.368417`, 0.506779`, 0.709798`]]]], \
GridBox[List[List[RowBox[List[TagBox[\\\"\\\\\\\"Length: \\\\\\\"\\\", \
\\\"SummaryItemAnnotation\\\"], \\\"\\\\[InvisibleSpace]\\\", \
TagBox[\\\"3\\\", \\\"SummaryItem\\\"]]]]], Rule[GridBoxAlignment, List[Rule[\
\\\"Columns\\\", List[List[Left]]], Rule[\\\"Rows\\\", \
List[List[Automatic]]]]], Rule[AutoDelete, False], Rule[GridBoxItemSize, \
List[Rule[\\\"Columns\\\", List[List[Automatic]]], Rule[\\\"Rows\\\", \
List[List[Automatic]]]]], Rule[GridBoxSpacings, List[Rule[\\\"Columns\\\", \
List[List[2]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaseStyle, \
List[Rule[ShowStringCharacters, False], Rule[NumberMarks, False], \
Rule[PrintPrecision, 3], Rule[ShowSyntaxStyles, False]]]]]], \
Rule[GridBoxAlignment, List[Rule[\\\"Columns\\\", List[List[Left]]], \
Rule[\\\"Rows\\\", List[List[Top]]]]], Rule[AutoDelete, False], \
Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", List[List[Automatic]]], \
Rule[\\\"Rows\\\", List[List[Automatic]]]]], Rule[BaselinePosition, List[1, \
1]]]], Rule[True, \
GridBox[List[List[PaneBox[ButtonBox[DynamicBox[FEPrivate`FrontEndResource[\\\"\
FEBitmaps\\\", \\\"SummaryBoxCloser\\\"]], RuleDelayed[ButtonFunction, \
Set[Typeset`open$$, False]], Rule[Appearance, None], Rule[BaseStyle, List[]], \
Rule[Evaluator, Automatic], Rule[Method, \\\"Preemptive\\\"]], \
Rule[Alignment, List[Center, Center]], Rule[ImageSize, \
Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]]], \
GraphicsBox[List[GrayLevel[0.5`], PolygonBox[List[List[0.25`, 0.5`], \
List[0.05`, 0.35`], List[0.15`, 0.35`], List[0.35`, 0.5`], List[0.15`, \
0.65`], List[0.05`, 0.65`]]], PolygonBox[List[List[0.4`, 0.5`], List[0.2`, \
0.35`], List[0.35`, 0.35`], List[0.55`, 0.5`], List[0.35`, 0.65`], List[0.2`, \
0.65`]]], PolygonBox[List[List[0.95`, 0.5`], List[0.55`, 0.1`], List[0.6`, \
0.35`], List[0.4`, 0.35`], List[0.6`, 0.5`], List[0.4`, 0.65`], List[0.6`, \
0.65`], List[0.55`, 0.9`]]]], Rule[PlotRange, List[List[-0.05`, 1.05`], \
List[-0.05`, 1.05`]]], Rule[Background, GrayLevel[0.93`]], Rule[FrameStyle, \
Directive[Thickness[Tiny], GrayLevel[0.7`]]], Rule[Axes, False], \
Rule[AspectRatio, 1], Rule[ImageSize, Dynamic[List[Automatic, Times[3.5`, \
Times[CurrentValue[\\\"FontCapHeight\\\"], \
Power[AbsoluteCurrentValue[Magnification], -1]]]]]], Rule[Frame, True], \
Rule[FrameTicks, None], Rule[FrameStyle, Directive[Opacity[0.5`], \
Thickness[Tiny], RGBColor[0.368417`, 0.506779`, 0.709798`]]]], \
GridBox[List[List[RowBox[List[TagBox[\\\"\\\\\\\"Length: \\\\\\\"\\\", \
\\\"SummaryItemAnnotation\\\"], \\\"\\\\[InvisibleSpace]\\\", \
TagBox[\\\"3\\\", \\\"SummaryItem\\\"]]]], List[RowBox[List[TagBox[\\\"\\\\\\\
\"Rules:\\\\\\\"\\\", \\\"SummaryItemAnnotation\\\"], \
\\\"\\\\[InvisibleSpace]\\\", TagBox[\\\"\\\\\\\"\\\\\\\"\\\", \
\\\"SummaryItem\\\"]]]], \
List[TagBox[TagBox[GridBox[List[List[RowBox[List[RowBox[List[\\\"f\\\", \\\"[\
\\\", RowBox[List[\\\"x_Integer\\\", \\\",\\\", \\\"y_Real\\\"]], \
\\\"]\\\"]], \\\"\\\\[RuleDelayed]\\\", RowBox[List[\\\"x\\\", \\\"+\\\", \
\\\"y\\\"]]]]], List[RowBox[List[RowBox[List[\\\"g\\\", \\\"[\\\", \
\\\"s_String\\\", \\\"]\\\"]], \\\"\\\\[RuleDelayed]\\\", \\\"s\\\"]]], \
List[RowBox[List[RowBox[List[\\\"h\\\", \\\"[\\\", \\\"s2_String\\\", \\\"]\\\
\"]], \\\"\\\\[RuleDelayed]\\\", \\\"s2\\\"]]]], Rule[GridBoxAlignment, \
List[Rule[\\\"Columns\\\", List[List[Left]]]]], Rule[DefaultBaseStyle, \
\\\"Column\\\"], Rule[GridBoxItemSize, List[Rule[\\\"Columns\\\", \
List[List[Automatic]]], Rule[\\\"Rows\\\", List[List[Automatic]]]]]], \
\\\"Column\\\"], \\\"SummaryItem\\\"]]], Rule[GridBoxAlignment, \
List[Rule[\\\"Columns\\\", List[List[Left]]], Rule[\\\"Rows\\\", \