-
Notifications
You must be signed in to change notification settings - Fork 0
/
out
3426 lines (2583 loc) · 138 KB
/
out
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
Latexmk: applying rule 'pdflatex'...
This is XeTeX, Version 3.14159265-2.6-0.99998 (TeX Live 2017/Debian) (preloaded format=xelatex)
\write18 enabled.
entering extended mode
(./thesis.tex
LaTeX2e <2017-04-15>
Babel <3.18> and hyphenation patterns for 84 language(s) loaded.
(/usr/share/texlive/texmf-dist/tex/latex/base/report.cls
Document Class: report 2014/09/29 v1.4h Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))
(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
Package inputenc Warning: inputenc package ignored with utf8 based engines.
) (/usr/share/texlive/texmf-dist/tex/latex/eso-pic/eso-pic.sty
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/atbegshi.sty
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/infwarerr.sty)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ltxcmds.sty)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifpdf.sty))
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty)
(/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty
(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg)
(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/xetex.def)))
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty)
(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg)))
(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty
(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty)
(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg))
(/usr/share/texlive/texmf-dist/tex/latex/pgfplots/pgfplots.sty
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex)
(/home/mikkel/texmf/tex/latex/pgf/frontendlayer/tikz.sty
(/home/mikkel/texmf/tex/latex/pgf/basiclayer/pgf.sty
(/home/mikkel/texmf/tex/latex/pgf/utilities/pgfrcs.sty
(/home/mikkel/texmf/tex/generic/pgf/utilities/pgfutil-common.tex
(/home/mikkel/texmf/tex/generic/pgf/utilities/pgfutil-common-lists.tex))
(/home/mikkel/texmf/tex/generic/pgf/utilities/pgfutil-latex.def
(/usr/share/texlive/texmf-dist/tex/latex/ms/everyshi.sty))
(/home/mikkel/texmf/tex/generic/pgf/utilities/pgfrcs.code.tex))
(/home/mikkel/texmf/tex/latex/pgf/basiclayer/pgfcore.sty
(/home/mikkel/texmf/tex/latex/pgf/systemlayer/pgfsys.sty
(/home/mikkel/texmf/tex/generic/pgf/systemlayer/pgfsys.code.tex
(/home/mikkel/texmf/tex/generic/pgf/utilities/pgfkeys.code.tex
(/home/mikkel/texmf/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex))
(/home/mikkel/texmf/tex/generic/pgf/systemlayer/pgf.cfg)
(/home/mikkel/texmf/tex/generic/pgf/systemlayer/pgfsys-xetex.def
(/home/mikkel/texmf/tex/generic/pgf/systemlayer/pgfsys-dvipdfmx.def
(/home/mikkel/texmf/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def))))
(/home/mikkel/texmf/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex))
(/home/mikkel/texmf/tex/generic/pgf/basiclayer/pgfcore.code.tex
(/home/mikkel/texmf/tex/generic/pgf/math/pgfmath.code.tex
(/home/mikkel/texmf/tex/generic/pgf/math/pgfmathcalc.code.tex
(/home/mikkel/texmf/tex/generic/pgf/math/pgfmathutil.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/math/pgfmathparser.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/math/pgfmathfunctions.code.tex
(/home/mikkel/texmf/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.te
x) (/home/mikkel/texmf/tex/generic/pgf/math/pgfmathfunctions.random.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/math/pgfmathfunctions.base.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/math/pgfmathfunctions.round.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.co
de.tex))) (/home/mikkel/texmf/tex/generic/pgf/math/pgfmathfloat.code.tex))
(/home/mikkel/texmf/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/basiclayer/pgfcorequick.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
(/home/mikkel/texmf/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex))
(/home/mikkel/texmf/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex)))
(/home/mikkel/texmf/tex/generic/pgf/modules/pgfmoduleshapes.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/modules/pgfmoduleplot.code.tex)
(/home/mikkel/texmf/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty)
(/home/mikkel/texmf/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty))
(/home/mikkel/texmf/tex/latex/pgf/utilities/pgffor.sty
(/home/mikkel/texmf/tex/latex/pgf/utilities/pgfkeys.sty
(/home/mikkel/texmf/tex/generic/pgf/utilities/pgfkeys.code.tex))
(/home/mikkel/texmf/tex/latex/pgf/math/pgfmath.sty
(/home/mikkel/texmf/tex/generic/pgf/math/pgfmath.code.tex))
(/home/mikkel/texmf/tex/generic/pgf/utilities/pgffor.code.tex
(/home/mikkel/texmf/tex/generic/pgf/math/pgfmath.code.tex)))
(/home/mikkel/texmf/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
(/home/mikkel/texmf/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/modules/pgfmodulematrix.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytop
aths.code.tex)))
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code
.tex))
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.t
ex)
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldp
gfsupp_loader.code.tex
(/home/mikkel/texmf/tex/generic/pgf/libraries/pgflibraryfpu.code.tex)
Package pgfplots: loading complementary arithmetics for your pgf version...
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldp
gfsupp_pgflibraryfpu.code.tex)
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldp
gfsupp_pgfmathfloat.code.tex))
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotslists
tructure.code.tex)
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotslists
tructureext.code.tex)
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray
.code.tex)
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatri
x.code.tex)
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshare
d.code.tex)
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque
.code.tex)
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.te
x
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.co
de.tex))
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code
.tex)
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.sur
fshading.code.tex
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surf
shading.pgfsys-xetex.def
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surf
shading.pgfsys-dvipdfmx.def))))
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.
tex
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex
))
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.t
ex)
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.t
ex
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.cod
e.tex
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.
tex)))
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex)
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.cod
e.tex)
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex
) (/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex
) (/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex)
(/usr/share/texlive/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex)
(/home/mikkel/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydec
orations.code.tex
(/home/mikkel/texmf/tex/generic/pgf/modules/pgfmoduledecorations.code.tex))
(/home/mikkel/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydec
orations.pathmorphing.code.tex
(/home/mikkel/texmf/tex/generic/pgf/libraries/decorations/pgflibrarydecorations
.pathmorphing.code.tex))
(/home/mikkel/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydec
orations.pathreplacing.code.tex
(/home/mikkel/texmf/tex/generic/pgf/libraries/decorations/pgflibrarydecorations
.pathreplacing.code.tex)))
(/home/mikkel/texmf/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplo
tmarks.code.tex
(/home/mikkel/texmf/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex)))
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty))
(/usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty)
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/auxhook.sty)
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty)
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def)
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/hyperref.cfg)
(/usr/share/texlive/texmf-dist/tex/latex/url/url.sty))
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hxetex.def
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/stringenc.sty)
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty))
(/usr/share/texlive/texmf-dist/tex/latex/mdframed/mdframed.sty
(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3-code.tex)
(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3xdvipdfmx.def)))
(/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty)
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/zref-abspage.sty
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/zref-base.sty))
(/usr/share/texlive/texmf-dist/tex/latex/needspace/needspace.sty)
(/usr/share/texlive/texmf-dist/tex/latex/mdframed/md-frame-0.mdf))
(/usr/share/texlive/texmf-dist/tex/latex/float/float.sty)
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty
For additional information on amsmath, use the `?' option.
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty))
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty)
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty))
(/usr/share/texlive/texmf-dist/tex/latex/base/flafter.sty)
(/home/mikkel/texmf/tex/latex/blindtext/blindtext.sty
(/usr/share/texlive/texmf-dist/tex/latex/tools/xspace.sty))
(/home/mikkel/texmf/tex/latex/seqsplit/seqsplit.sty)
(/home/mikkel/texmf/tex/latex/minted/minted.sty
(/home/mikkel/texmf/tex/latex/fvextra/fvextra.sty
(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty)
(/usr/share/texlive/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty
Style option: `fancyvrb' v2.7a, with DG/SPQR fixes, and firstline=lastline fix
<2008/02/07> (tvz)) (/home/mikkel/texmf/tex/latex/upquote/upquote.sty
(/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty
(/usr/share/texlive/texmf-dist/tex/latex/base/ts1enc.def)))
(/usr/share/texlive/texmf-dist/tex/latex/lineno/lineno.sty))
(/usr/share/texlive/texmf-dist/tex/latex/tools/calc.sty)
(/usr/share/texlive/texmf-dist/tex/latex/tools/shellesc.sty)
(/home/mikkel/texmf/tex/latex/ifplatform/ifplatform.sty
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/catchfile.sty)
(./thesis.w18)) (/home/mikkel/texmf/tex/generic/xstring/xstring.sty
(/home/mikkel/texmf/tex/generic/xstring/xstring.tex))
(/home/mikkel/texmf/tex/latex/framed/framed.sty))
(/home/mikkel/texmf/tex/latex/hyphenat/hyphenat.sty
Package hyphenat Warning: *******************************
(hyphenat) * You have used the htt option.
(hyphenat) * You are likely to get many Font Warning messages.
(hyphenat) * These can usually be ignored.
(hyphenat) *******************************.
) (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty))
(/home/mikkel/texmf/tex/latex/stmaryrd/stmaryrd.sty)
(/home/mikkel/texmf/tex/latex/semantic/semantic.sty
Semantic Package v2.0(epsilon) [2003/10/28]
CVSId: $Id: semantic.dtx,v 1.11 2003/10/28 13:45:57 turtle Exp $
Loading features:
(/home/mikkel/texmf/tex/latex/semantic/ligature.sty) math mode ligatures,
(/home/mikkel/texmf/tex/latex/semantic/infernce.sty) inference rules,
(/home/mikkel/texmf/tex/latex/semantic/tdiagram.sty) T diagrams,
(/home/mikkel/texmf/tex/latex/semantic/reserved.sty) reserved words,
(/home/mikkel/texmf/tex/latex/semantic/shrthand.sty) short hands,
and general definitions.
) (/home/mikkel/texmf/tex/latex/sttools/flushend.sty)
(/usr/share/texlive/texmf-dist/tex/latex/subfigure/subfigure.sty
****************************************
* Local config file subfigure.cfg used *
****************************************
(/usr/share/texlive/texmf-dist/tex/latex/subfigure/subfigure.cfg))
(/usr/share/texlive/texmf-dist/tex/latex/svg/svg.sty
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrbase.sty
(/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlfile.sty)))
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/transparent.sty
Package transparent Warning: Loading aborted, because pdfTeX is not running in
PDF mode.
) (/usr/share/texlive/texmf-dist/tex/latex/pdfpages/pdfpages.sty
(/usr/share/texlive/texmf-dist/tex/latex/pdfpages/ppxetex.def))
(/usr/share/texlive/texmf-dist/tex/latex/titling/titling.sty)
(/usr/share/texlive/texmf-dist/tex/latex/cleveref/cleveref.sty)
(/usr/share/texlive/texmf-dist/tex/latex/parskip/parskip.sty)
(/usr/share/texlive/texmf-dist/tex/latex/appendix/appendix.sty)
(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.sty
(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty
(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
(/usr/share/texlive/texmf-dist/tex/latex/base/tuenc.def))
(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.cfg)))
(./ku-frontpage.sty (/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty
(/usr/share/texlive/texmf-dist/tex/generic/babel/switch.def)
(/usr/share/texlive/texmf-dist/tex/generic/babel-english/english.ldf
(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.def
(/usr/share/texlive/texmf-dist/tex/generic/babel/xebabel.def
(/usr/share/texlive/texmf-dist/tex/generic/babel/txtbabel.def))))
(/usr/share/texlive/texmf-dist/tex/generic/babel-english/english.ldf))
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/times.sty)
(/usr/share/texlive/texmf-dist/tex/latex/textpos/textpos.sty
Package: textpos 2016/06/07 1.8, absolute positioning of text on the page
Grid set 16 x 16 = 37.34424pt x 52.81541pt
TextBlockOrigin set to 0pt x 0pt
)
Grid set 12 x 24 = 49.79231pt x 35.21028pt
) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcolorbox.sty
(/usr/share/texlive/texmf-dist/tex/latex/tools/verbatim.sty)
(/usr/share/texlive/texmf-dist/tex/latex/environ/environ.sty
(/usr/share/texlive/texmf-dist/tex/latex/trimspaces/trimspaces.sty)))
(/home/mikkel/texmf/tex/latex/changepage/changepage.sty)/usr/local/bin/pygmentize
(./thesis.aux)
(/usr/share/texlive/texmf-dist/tex/latex/base/ts1cmr.fd)
LaTeX Font Warning: Font shape `TU/ptm/m/n' undefined
(Font) using `TU/lmr/m/n' instead on input line 221.
ABD: EveryShipout initializing macros
Package pgfplots Warning: running in backwards compatibility mode (unsuitable t
ick labels; missing features). Consider writing \pgfplotsset{compat=1.15} into
your preamble.
on input line 221.
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/gettitlestring.sty))
Package hyperref Warning: Rerun to get /PageLabels entry.
LaTeX Font Warning: Font shape `TU/pcr/m/n' undefined
(Font) using `TU/lmr/m/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/m/it' undefined
(Font) using `TU/pcr/m/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/m/sl' undefined
(Font) using `TU/pcr/m/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/m/sc' undefined
(Font) using `TU/pcr/m/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/b/n' undefined
(Font) using `TU/pcr/m/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/b/it' undefined
(Font) using `TU/pcr/b/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/b/sl' undefined
(Font) using `TU/pcr/b/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/b/sc' undefined
(Font) using `TU/pcr/b/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/bx/n' undefined
(Font) using `TU/pcr/m/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/bx/it' undefined
(Font) using `TU/pcr/bx/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/bx/sl' undefined
(Font) using `TU/pcr/bx/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/bx/sc' undefined
(Font) using `TU/pcr/bx/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/sb/n' undefined
(Font) using `TU/pcr/m/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/sb/it' undefined
(Font) using `TU/pcr/sb/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/sb/sl' undefined
(Font) using `TU/pcr/sb/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/sb/sc' undefined
(Font) using `TU/pcr/sb/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/c/n' undefined
(Font) using `TU/pcr/m/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/c/it' undefined
(Font) using `TU/pcr/c/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/c/sl' undefined
(Font) using `TU/pcr/c/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/c/sc' undefined
(Font) using `TU/pcr/c/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/l/n' undefined
(Font) using `TU/pcr/m/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/l/it' undefined
(Font) using `TU/pcr/l/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/l/sl' undefined
(Font) using `TU/pcr/l/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/l/sc' undefined
(Font) using `TU/pcr/l/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/m/ui' undefined
(Font) using `TU/pcr/m/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/bx/ui' undefined
(Font) using `TU/pcr/bx/n' instead on input line 221.
LaTeX Font Warning: Font shape `TU/pcr/m/In' undefined
(Font) using `TU/pcr/m/n' instead on input line 221.
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/pdflscape.sty
(/usr/share/texlive/texmf-dist/tex/latex/graphics/lscape.sty))
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/se-ascii-print.def)
(./chapters/0_prelude.tex
LaTeX Font Warning: Font shape `TU/phv/bx/n' undefined
(Font) using `TU/lmr/m/n' instead on input line 1.
LaTeX Font Warning: Font shape `TU/phv/sb/n' undefined
(Font) using `TU/lmr/m/n' instead on input line 1.
[1] [2]
LaTeX Font Warning: Font shape `TU/ptm/bx/n' undefined
(Font) using `TU/ptm/m/n' instead on input line 3.
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd)
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd)
(/home/mikkel/texmf/tex/latex/stmaryrd/Ustmry.fd)
Overfull \hbox (2.27693pt too wide) in paragraph at lines 27--32
[]\TU/ptm/m/n/10 Finally, we show that complex GPU benchmarks can be easily wri
tten in \TU/FreeMono(0)/m/n/10 FShark
[1] [1]) [2] (./chapters/1_introduction.tex
Chapter 1.
LaTeX Warning: Citation `Dubois:ParCompDesign' on page 3 undefined on input lin
e 12.
[3]
LaTeX Warning: Citation `CLR-Generics' on page 4 undefined on input line 49.
LaTeX Warning: Citation `Halide' on page 4 undefined on input line 69.
LaTeX Warning: Citation `HPAT' on page 4 undefined on input line 70.
LaTeX Warning: Citation `DeliteDSLs' on page 4 undefined on input line 70.
LaTeX Warning: Citation `OP2-Mesh' on page 4 undefined on input line 71.
LaTeX Warning: Citation `tang2011pochoir' on page 4 undefined on input line 71.
LaTeX Warning: Citation `StreamJava8' on page 4 undefined on input line 76.
LaTeX Warning: Citation `Accelerate-DAMP' on page 4 undefined on input line 77.
LaTeX Warning: Citation `AccelerateStreaming' on page 4 undefined on input line
77.
LaTeX Warning: Citation `svensson2011obsidian' on page 4 undefined on input lin
e 78.
LaTeX Warning: Citation `blelloch1994implementation' on page 4 undefined on inp
ut line 82.
LaTeX Warning: Citation `Bergstrom:2012:NDG:2398856.2364563' on page 4 undefine
d on input line 82.
LaTeX Warning: Citation `pldi17' on page 4 undefined on input line 83.
LaTeX Warning: Citation `Futhark:redomap' on page 4 undefined on input line 83.
LaTeX Warning: Citation `Futhark-ICFP18' on page 4 undefined on input line 83.
LaTeX Warning: Citation `SaCShared2005' on page 4 undefined on input line 84.
LaTeX Warning: Citation `GrelSchoIJPP06' on page 4 undefined on input line 84.
LaTeX Warning: Citation `Lift-CGO17' on page 4 undefined on input line 84.
LaTeX Warning: Citation `Lift-ICFP' on page 4 undefined on input line 84.
LaTeX Warning: Citation `alma:ISSAC' on page 4 undefined on input line 124.
LaTeX Warning: Citation `mapal_synasc' on page 4 undefined on input line 124.
LaTeX Warning: Citation `aldor' on page 4 undefined on input line 126.
LaTeX Warning: Citation `maple_guide' on page 4 undefined on input line 128.
LaTeX Warning: Citation `apltail' on page 4 undefined on input line 132.
LaTeX Warning: Citation `dyalogbook' on page 4 undefined on input line 134.
[4]
LaTeX Warning: Citation `apltail' on page 5 undefined on input line 154.
LaTeX Font Warning: Font shape `TU/ptm/m/it' undefined
(Font) using `TU/ptm/m/n' instead on input line 157.
[5]
Underfull \hbox (badness 1540) in paragraph at lines 209--209
[][][] \TU/ptm/m/n/8 For example \TU/FreeMono(0)/m/n/8 F# \TU/ptm/m/n/8 does no
t support a \TU/FreeMono(0)/m/n/8 reduce \TU/ptm/m/n/8 operator of type $\OT1/c
mr/m/n/8 (\OML/cmm/m/it/8 ^^K \OMS/cmsy/m/n/8 ! \OML/cmm/m/it/8 ^^K \OMS/cmsy/m
/n/8 !
LaTeX Warning: Citation `pldi17' on page 6 undefined on input line 240.
[6]
Underfull \hbox (badness 10000) in paragraph at lines 270--273
[7]) [8] (./chapters/2_background.tex
Chapter 2.
LaTeX Warning: Reference `fig:cudasaxpy' on page 9 undefined on input line 15.
(./thesis.out.pyg) (./thesis.out.pyg) (./thesis.out.pyg) [9]
Underfull \hbox (badness 10000) in paragraph at lines 68--84
Underfull \hbox (badness 10000) in paragraph at lines 68--84
[10]
LaTeX Warning: Reference `fig:futsaxpy' on page 11 undefined on input line 122.
[11]
LaTeX Warning: Reference `fig:cudasaxpy' on page 12 undefined on input line 168
.
LaTeX Warning: Reference `fig:futsaxpy' on page 12 undefined on input line 169.
[12]
LaTeX Warning: Reference `fig:fsharpsaxpy' on page 13 undefined on input line 1
81.
LaTeX Warning: Reference `fig:futsaxpy' on page 13 undefined on input line 182.
(./thesis.out.pyg)) [13] (./chapters/2half_architecture.tex
Chapter 3.
Package hyperref Warning: Token not allowed in a PDF string (Unicode):
(hyperref) removing `\\' on input line 1.
LaTeX Warning: Reference `fig:ccompiler' on page 14 undefined on input line 16.
[14] (/usr/share/texlive/texmf-dist/tex/latex/listings/lstlang1.sty)
(/usr/share/texlive/texmf-dist/tex/latex/listings/lstlang1.sty)
Overfull \hbox (0.97876pt too wide) in paragraph at lines 53--54
[][][][][][][][][][][][][][][][][][][][][][][][][]
(./thesis.out.pyg [15])
Overfull \hbox (15.36403pt too wide) in paragraph at lines 131--134
\TU/ptm/m/it/10 Futhark compiler from the command line, which will compile \TU/
FreeMono(0)/m/n/10 mapPlus2.fut
LaTeX Warning: Reference `fig:shortfutharkprogram5' on page 16 undefined on inp
ut line 140.
(./thesis.out.pyg) [16]
Overfull \hbox (19.8963pt too wide) in paragraph at lines 191--191
[]\TU/ptm/bx/n/14.4 Transpiling \TU/FreeMono(0)/bx/n/14.4 F# \TU/ptm/bx/n/14.4
Computational Kernels to Futhark
LaTeX Warning: Reference `fig:fsharkcompiler' on page 17 undefined on input lin
e 203.
Overfull \hbox (32.40907pt too wide) in paragraph at lines 207--208
[][]
[17] (./thesis.out.pyg)
LaTeX Warning: Reference `fig:shortfsharkprogram1' on page 18 undefined on inpu
t line 232.
(./thesis.out.pyg)
LaTeX Warning: `h' float specifier changed to `ht'.
) [18] [19] (./chapters/5_csharpgenerator.tex
Chapter 4.
LaTeX Warning: Reference `fig:shortfutharkprogram3'' on page 20 undefined on in
put line 17.
LaTeX Warning: Reference `fig:shortfutharkprogram4'' on page 20 undefined on in
put line 19.
LaTeX Warning: Reference `fig:shortfutharkprogram5'' on page 20 undefined on in
put line 23.
(./thesis.out.pyg) [20]
LaTeX Warning: Reference `fig:shortfutharkprogram5'' on page 1 undefined on inp
ut line 72.
LaTeX Warning: Reference `fig:shortfutharkprogram4'' on page 1 undefined on inp
ut line 72.
LaTeX Warning: Reference `fig:shortfutharkprogram3'' on page 1 undefined on inp
ut line 72.
LaTeX Warning: Reference `fig:shortfutharkprogram3'' on page 21 undefined on in
put line 76.
[21]
LaTeX Warning: Reference `fig:ccompiler' on page 22 undefined on input line 124
.
LaTeX Warning: Reference `fig:futharkcompilerlowerlevel' on page 22 undefined o
n input line 128.
[22]
LaTeX Warning: Reference `fig:shortfutharkprogram4'' on page 23 undefined on in
put line 141.
LaTeX Warning: Citation `pldi17' on page 23 undefined on input line 147.
LaTeX Warning: Reference `fig:impcode' on page 23 undefined on input line 159.
LaTeX Warning: Reference `fig:impcodeascs' on page 23 undefined on input line 1
60.
(./thesis.out.pyg) [23] (./thesis.out.pyg)
LaTeX Warning: Reference `subsec:runtimelibs' on page 24 undefined on input lin
e 186.
LaTeX Warning: Reference `fig:callcsc' on page 24 undefined on input line 192.
Overfull \hbox (0.48538pt too wide) in paragraph at lines 190--198
\TU/ptm/m/it/10 extra external libraries \TU/FreeMono(0)/m/n/10 Mono.Options.dl
l \TU/ptm/m/it/10 and \TU/FreeMono(0)/m/n/10 Cloo.clSharp.dll\TU/ptm/m/it/10 ,
[24]
LaTeX Warning: Reference `fig:futharkcsclasses' on page 25 undefined on input l
ine 245.
Overfull \hbox (5.66173pt too wide) in paragraph at lines 250--251
[][]
LaTeX Warning: Reference `subsec:futharkclass' on page 25 undefined on input li
ne 265.
[25]
LaTeX Warning: Reference `subsec:programclass' on page 26 undefined on input li
ne 281.
LaTeX Warning: Reference `fig:futharkclass' on page 26 undefined on input line
287.
[26]
Overfull \hbox (0.71938pt too wide) in paragraph at lines 320--322
[]\TU/ptm/m/it/10 The first variable is \TU/FreeMono(0)/m/n/10 struct futhark_-
context ctx \TU/ptm/m/it/10 and contains the global
Overfull \hbox (6.43806pt too wide) in paragraph at lines 331--334
[]\TU/ptm/m/it/10 The second variable is \TU/FreeMono(0)/m/n/10 struct futhark_
-context_-config cfg \TU/ptm/m/it/10 and records
LaTeX Warning: Reference `fig:writeScalarArray' on page 27 undefined on input l
ine 367.
(./thesis.out.pyg) [27] (./thesis.out.pyg)
LaTeX Warning: Reference `subsec:futharkcsexe' on page 28 undefined on input li
ne 420.
[28]
LaTeX Warning: Reference `fig:impcode' on page 29 undefined on input line 449.
Overfull \hbox (11.63171pt too wide) in paragraph at lines 448--451
\TU/ptm/m/it/10 The compiled Futhark functions are the Futhark functions as wri
tten in \TU/FreeMono(0)/m/n/10 ImpCode[][][]\TU/ptm/m/it/10 ,
[29]
Underfull \hbox (badness 10000) in paragraph at lines 487--500
LaTeX Warning: Reference `fig:mapplus20' on page 30 undefined on input line 510
.
LaTeX Warning: Reference `fig:futharkentrypairexe' on page 30 undefined on inpu
t line 522.
[30] (./thesis.out.pyg)
LaTeX Warning: Reference `fig:mapplus20' on page 31 undefined on input line 567
.
LaTeX Warning: Reference `fig:futharkentrypairlib' on page 31 undefined on inpu
t line 568.
LaTeX Warning: Reference `entryfunctionsinexecutables' on page 31 undefined on
input line 572.
(./thesis.out.pyg) [31]
LaTeX Warning: Reference `sec:convertingarrays' on page 32 undefined on input l
ine 611.
LaTeX Warning: Reference `fig:futharkcsclasses' on page 32 undefined on input l
ine 620.
[32]
LaTeX Warning: Reference `fig:futharkcscene' on page 33 undefined on input line
665.
(./thesis.out.pyg)
Overfull \hbox (38.29271pt too wide) in paragraph at lines 696--702
[]\TU/ptm/m/it/10 In \TU/FreeMono(0)/m/n/10 C#\TU/ptm/m/it/10 , arrays and list
s are accessed by indexing, for example \TU/FreeMono(0)/m/n/10 var x = myArray[
10];\TU/ptm/m/it/10 .
[33]
LaTeX Warning: Reference `marshalunsafeperformance' on page 34 undefined on inp
ut line 703.
Overfull \hbox (12.04602pt too wide) in paragraph at lines 715--717
[]\TU/ptm/m/it/10 Therefore we encapsulate our unsafe pointer-using code in an
\TU/FreeMono(0)/m/n/10 unsafe \TU/ptm/m/it/10 block.
LaTeX Warning: Reference `fig:writeScalarArray'' on page 34 undefined on input
line 726.
(./thesis.out.pyg)
LaTeX Warning: Reference `fig:threemethods' on page 34 undefined on input line
756.
(./thesis.out.pyg) [34]
LaTeX Warning: Reference `fig:memoryperformancebenchmark' on page 35 undefined
on input line 806.
LaTeX Warning: Reference `fig:shortperformancegraph' on page 35 undefined on in
put line 808.
Underfull \hbox (badness 10000) in paragraph at lines 857--863
Underfull \hbox (badness 10000) in paragraph at lines 857--863
[35] [36] [37]
Underfull \hbox (badness 10000) in paragraph at lines 894--898
Underfull \hbox (badness 10000) in paragraph at lines 894--898
) [38] (./chapters/3_fsharklang.tex
Chapter 5.
LaTeX Warning: Reference `chap:fsharkcompiler' on page 39 undefined on input li
ne 29.
LaTeX Warning: Reference `fig:shortfsharkprogram0'' on page 39 undefined on inp
ut line 32.
LaTeX Warning: Reference `fig:shortfsharkprogram1'' on page 39 undefined on inp
ut line 35.
(./thesis.out.pyg) [39]
LaTeX Warning: Reference `fig:shortfsharkprogram0'' on page 40 undefined on inp
ut line 79.
LaTeX Warning: Reference `fig:shortfsharkprogram0'' on page 40 undefined on inp
ut line 79.
[40]
LaTeX Warning: Reference `fig:fsharkliterals' on page 1 undefined on input line
88.
LaTeX Warning: Reference `fig:fsharktypes' on page 1 undefined on input line 88
.
LaTeX Warning: Reference `fig:fsharkpatterns' on page 1 undefined on input line
88.
LaTeX Warning: Reference `fig:fsharkexpressions' on page 1 undefined on input l
ine 88.
LaTeX Warning: Reference `fig:fsharkstatements' on page 1 undefined on input li
ne 88.
LaTeX Warning: Reference `noteonfsharkmodules' on page 41 undefined on input li
ne 105.
LaTeX Warning: Reference `noteonfsharktypes' on page 41 undefined on input line
110.
Overfull \hbox (28.58113pt too wide) in paragraph at lines 93--114
[][]
Overfull \hbox (42.79195pt too wide) in paragraph at lines 93--114
[]
LaTeX Warning: Reference `noteonfsharkmodules' on page 41 undefined on input li
ne 131.
LaTeX Warning: `h' float specifier changed to `ht'.
LaTeX Warning: `h' float specifier changed to `ht'.
Overfull \hbox (11.0538pt too wide) in paragraph at lines 176--186
[][]
LaTeX Warning: `h' float specifier changed to `ht'.
[41] [42]
Underfull \hbox (badness 10000) in paragraph at lines 193--195
LaTeX Warning: Reference `fig:astcurried' on page 1 undefined on input line 212
.
LaTeX Warning: Reference `fig:astcurried'' on page 1 undefined on input line 21
3.
(./thesis.out.pyg) (./thesis.out.pyg) [43]
LaTeX Warning: Reference `fig:fsharkops' on page 44 undefined on input line 253
.
Overfull \hbox (20.47832pt too wide) in paragraph at lines 290--290
[]\TU/FreeMono(0)/bx/n/14.4 F# \TU/ptm/bx/n/14.4 standard library functions ava
ilable in \TU/FreeMono(0)/bx/n/14.4 FShark
LaTeX Warning: Reference `fig:fsharkfuns' on page 44 undefined on input line 29
3.
LaTeX Warning: `h' float specifier changed to `ht'.
LaTeX Warning: Reference `fig:fsharkops' on page 44 undefined on input line 342
.
Overfull \hbox (5.87741pt too wide) in paragraph at lines 343--343
[][][]\TU/pcr/m/n/8 except for some convertion functions, found in \TU/FreeMono
(0)/m/n/8 FSharp.Core.ExtraTopLevelOperators|
LaTeX Warning: Reference `fig:fsharkfuns' on page 44 undefined on input line 34
3.
Overfull \hbox (75.1214pt too wide) in paragraph at lines 339--351
[]\TU/ptm/m/it/10 The primary module used in my supported \TU/FreeMono(0)/m/n/1
0 F# \TU/ptm/m/it/10 subset is the module \TU/FreeMono(0)/m/n/10 FSharp.Core.Op
erators\TU/ptm/m/it/10 .
[44] (./thesis.out.pyg) (./thesis.out.pyg) [45]
Overfull \hbox (23.29272pt too wide) in paragraph at lines 395--401
\TU/FreeMono(0)/m/n/10 FShark \TU/ptm/m/it/10 was chosen, the SOACs and array f
unction included in the \TU/FreeMono(0)/m/n/10 FSharkPrelude
LaTeX Warning: Reference `subsec:fsharkcorrectness' on page 46 undefined on inp
ut line 412.
(./thesis.out.pyg [46]) (./thesis.out.pyg)
LaTeX Warning: Reference `subsec:badscatter' on page 47 undefined on input line
465.
(./thesis.out.pyg
Overfull \hbox (7.96071pt too wide) in paragraph at lines 457--1
\TU/ptm/m/it/10 Note that we are not limited to the \TU/FreeMono(0)/m/n/10 FSha
rk \TU/ptm/m/it/10 subset in the \TU/FreeMono(0)/m/n/10 FSharkPrelude\TU/ptm/m/
it/10 ,
)
LaTeX Warning: Reference `appendix:soacs' on page 47 undefined on input line 47
5.
[47]
LaTeX Warning: Reference `fig:futharkfusion' on page 48 undefined on input line
507.
LaTeX Warning: Reference `fig:pseudofusion' on page 48 undefined on input line
523.
LaTeX Warning: Reference `fig:pseudokernel' on page 48 undefined on input line
525.
(./thesis.out.pyg)
LaTeX Warning: Reference `fig:futharkfusion' on page 48 undefined on input line
539.
(./thesis.out.pyg)
LaTeX Warning: Reference `fig:futharkfusion' on page 48 undefined on input line
562.
[48]
LaTeX Warning: Citation `pldi17' on page 49 undefined on input line 573.
LaTeX Warning: Citation `pldi17' on page 49 undefined on input line 582.
LaTeX Warning: Reference `fig:fsharpnested' on page 49 undefined on input line
584.
(./thesis.out.pyg) [49]
LaTeX Warning: Reference `fig:initarray0' on page 50 undefined on input line 63
2.
(./thesis.out.pyg)
LaTeX Warning: Reference `fig:jaggedarrayfsharp' on page 50 undefined on input
line 652.