-
Notifications
You must be signed in to change notification settings - Fork 0
/
wu_final_report.log
999 lines (908 loc) · 46.9 KB
/
wu_final_report.log
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
This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) (format=pdflatex 2012.6.30) 10 DEC 2014 15:57
entering extended mode
restricted \write18 enabled.
file:line:error style messages enabled.
%&-line parsing enabled.
**wu_final_report.tex
(./wu_final_report.tex
LaTeX2e <2011/06/27>
Babel <v3.8m> and hyphenation patterns for english, dumylang, nohyphenation, ge
rman-x-2012-05-30, ngerman-x-2012-05-30, afrikaans, ancientgreek, ibycus, arabi
c, armenian, basque, bulgarian, catalan, pinyin, coptic, croatian, czech, danis
h, dutch, ukenglish, usenglishmax, esperanto, estonian, ethiopic, farsi, finnis
h, french, friulan, galician, german, ngerman, swissgerman, monogreek, greek, h
ungarian, icelandic, assamese, bengali, gujarati, hindi, kannada, malayalam, ma
rathi, oriya, panjabi, tamil, telugu, indonesian, interlingua, irish, italian,
kurmanji, latin, latvian, lithuanian, mongolian, mongolianlmc, bokmal, nynorsk,
polish, portuguese, romanian, romansh, russian, sanskrit, serbian, serbianc, s
lovak, slovenian, spanish, swedish, turkish, turkmen, ukrainian, uppersorbian,
welsh, loaded.
(/usr/local/texlive/2012/texmf-dist/tex/latex/base/article.cls
Document Class: article 2007/10/19 v1.4h Standard LaTeX document class
(/usr/local/texlive/2012/texmf-dist/tex/latex/base/size12.clo
File: size12.clo 2007/10/19 v1.4h Standard LaTeX file (size option)
)
\c@part=\count79
\c@section=\count80
\c@subsection=\count81
\c@subsubsection=\count82
\c@paragraph=\count83
\c@subparagraph=\count84
\c@figure=\count85
\c@table=\count86
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/geometry/geometry.sty
Package: geometry 2010/09/12 v5.6 Page Geometry
(/usr/local/texlive/2012/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks14
)
(/usr/local/texlive/2012/texmf-dist/tex/generic/oberdiek/ifpdf.sty
Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in PDF mode is detected.
)
(/usr/local/texlive/2012/texmf-dist/tex/generic/oberdiek/ifvtex.sty
Package: ifvtex 2010/03/01 v1.5 Detect VTeX and its facilities (HO)
Package ifvtex Info: VTeX not detected.
)
(/usr/local/texlive/2012/texmf-dist/tex/generic/ifxetex/ifxetex.sty
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
\Gm@cnth=\count87
\Gm@cntv=\count88
\c@Gm@tempcnt=\count89
\Gm@bindingoffset=\dimen103
\Gm@wd@mp=\dimen104
\Gm@odd@mp=\dimen105
\Gm@even@mp=\dimen106
\Gm@layoutwidth=\dimen107
\Gm@layoutheight=\dimen108
\Gm@layouthoffset=\dimen109
\Gm@layoutvoffset=\dimen110
\Gm@dimlist=\toks15
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/moreverb/moreverb.sty
Package: moreverb 2008/06/03 v2.3a `more' verbatim facilities
(/usr/local/texlive/2012/texmf-dist/tex/latex/tools/verbatim.sty
Package: verbatim 2003/08/22 v1.5q LaTeX2e package for verbatim enhancements
\every@verbatim=\toks16
\verbatim@line=\toks17
\verbatim@in@stream=\read1
)
\tab@position=\count90
\tab@size=\count91
\listing@line=\count92
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
\fancy@headwidth=\skip43
\f@ncyO@elh=\skip44
\f@ncyO@erh=\skip45
\f@ncyO@olh=\skip46
\f@ncyO@orh=\skip47
\f@ncyO@elf=\skip48
\f@ncyO@erf=\skip49
\f@ncyO@olf=\skip50
\f@ncyO@orf=\skip51
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/algorithms/algorithmic.sty
Package: algorithmic 2009/08/24 v0.1 Document Style `algorithmic'
(/usr/local/texlive/2012/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2001/05/26 v1.1c Standard LaTeX ifthen package (DPC)
)
\c@ALC@unique=\count93
\c@ALC@line=\count94
\c@ALC@rem=\count95
\c@ALC@depth=\count96
\ALC@tlm=\skip52
\algorithmicindent=\skip53
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/algorithms/algorithm.sty
Package: algorithm 2009/08/24 v0.1 Document Style `algorithm' - floating enviro
nment
(/usr/local/texlive/2012/texmf-dist/tex/latex/float/float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count97
\float@exts=\toks18
\float@box=\box26
\@float@everytoks=\toks19
\@floatcapt=\box27
)
\@float@every@algorithm=\toks20
\c@algorithm=\count98
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/tools/array.sty
Package: array 2008/09/09 v2.4c Tabular extension package (FMi)
\col@sep=\dimen111
\extrarowheight=\dimen112
\NC@list=\toks21
\extratabsurround=\skip54
\backup@length=\skip55
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2012/05/13 v6.82q Hypertext links for LaTeX
(/usr/local/texlive/2012/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
Package: hobsub-hyperref 2012/05/28 v1.13 Bundle oberdiek, subset hyperref (HO)
(/usr/local/texlive/2012/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty
Package: hobsub-generic 2012/05/28 v1.13 Bundle oberdiek, subset generic (HO)
Package: hobsub 2012/05/28 v1.13 Construct package bundles (HO)
Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO)
Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO)
Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
Package hobsub Info: Skipping package `ifvtex' (already loaded).
Package: intcalc 2007/09/27 v1.1 Expandable calculations with integers (HO)
Package hobsub Info: Skipping package `ifpdf' (already loaded).
Package: etexcmds 2011/02/16 v1.5 Avoid name clashes with e-TeX commands (HO)
Package etexcmds Info: Could not find \expanded.
(etexcmds) That can mean that you are not using pdfTeX 1.50 or
(etexcmds) that some package has redefined \expanded.
(etexcmds) In the latter case, load this package earlier.
Package: kvsetkeys 2012/04/25 v1.16 Key value parser (HO)
Package: kvdefinekeys 2011/04/07 v1.3 Define keys (HO)
Package: pdftexcmds 2011/11/29 v0.20 Utility functions of pdfTeX for LuaTeX (HO
)
Package pdftexcmds Info: LuaTeX not detected.
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
Package: pdfescape 2011/11/25 v1.13 Implements pdfTeX's escape features (HO)
Package: bigintcalc 2012/04/08 v1.3 Expandable calculations on big integers (HO
)
Package: bitset 2011/01/30 v1.1 Handle bit-vector datatype (HO)
Package: uniquecounter 2011/01/30 v1.2 Provide unlimited unique counter (HO)
)
Package hobsub Info: Skipping package `hobsub' (already loaded).
Package: letltxmacro 2010/09/02 v1.4 Let assignment for LaTeX macros (HO)
Package: hopatch 2012/05/28 v1.2 Wrapper for package hooks (HO)
Package: xcolor-patch 2011/01/30 xcolor patch
Package: atveryend 2011/06/30 v1.8 Hooks at the very end of document (HO)
Package atveryend Info: \enddocument detected (standard20110627).
Package: atbegshi 2011/10/05 v1.16 At begin shipout hook (HO)
Package: refcount 2011/10/16 v3.4 Data extraction from label references (HO)
Package: hycolor 2011/01/30 v1.7 Color options for hyperref/bookmark (HO)
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/oberdiek/kvoptions.sty
Package: kvoptions 2011/06/30 v3.11 Key value format for package options (HO)
)
\@linkdim=\dimen113
\Hy@linkcounter=\count99
\Hy@pagecounter=\count100
(/usr/local/texlive/2012/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2012/05/13 v6.82q Hyperref: PDFDocEncoding definition (HO)
)
\Hy@SavedSpaceFactor=\count101
(/usr/local/texlive/2012/texmf-dist/tex/latex/latexconfig/hyperref.cfg
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
Package hyperref Info: Hyper figures OFF on input line 4062.
Package hyperref Info: Link nesting OFF on input line 4067.
Package hyperref Info: Hyper index ON on input line 4070.
Package hyperref Info: Plain pages OFF on input line 4077.
Package hyperref Info: Backreferencing OFF on input line 4082.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4300.
\c@Hy@tempcnt=\count102
(/usr/local/texlive/2012/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip10
Package: url 2006/04/12 ver 3.3 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 4653.
\Fld@menulength=\count103
\Field@Width=\dimen114
\Fld@charsize=\dimen115
Package hyperref Info: Hyper figures OFF on input line 5773.
Package hyperref Info: Link nesting OFF on input line 5778.
Package hyperref Info: Hyper index ON on input line 5781.
Package hyperref Info: backreferencing OFF on input line 5788.
Package hyperref Info: Link coloring OFF on input line 5793.
Package hyperref Info: Link coloring with OCG OFF on input line 5798.
Package hyperref Info: PDF/A mode OFF on input line 5803.
LaTeX Info: Redefining \ref on input line 5843.
LaTeX Info: Redefining \pageref on input line 5847.
\Hy@abspage=\count104
\c@Item=\count105
\c@Hfootnote=\count106
)
Package hyperref Message: Driver (autodetected): hpdftex.
(/usr/local/texlive/2012/texmf-dist/tex/latex/hyperref/hpdftex.def
File: hpdftex.def 2012/05/13 v6.82q Hyperref driver for pdfTeX
\Fld@listcount=\count107
\c@bookmark@seq@number=\count108
(/usr/local/texlive/2012/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty
Package: rerunfilecheck 2011/04/15 v1.7 Rerun checks for auxiliary files (HO)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
82.
)
\Hy@SectionHShift=\skip56
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/local/texlive/2012/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)
(/usr/local/texlive/2012/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/latexconfig/graphics.cfg
File: graphics.cfg 2010/04/23 v1.9 graphics configuration of TeX Live
)
Package graphics Info: Driver file: pdftex.def on input line 91.
(/usr/local/texlive/2012/texmf-dist/tex/latex/pdftex-def/pdftex.def
File: pdftex.def 2011/05/27 v0.06d Graphics/color for pdfTeX
\Gread@gobject=\count109
))
\Gin@req@height=\dimen116
\Gin@req@width=\dimen117
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/preprint/fullpage.sty
Package: fullpage 1999/02/23 1.1 (PWD)
\FP@margin=\skip57
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2000/07/18 v2.13 AMS math features
\@mathmargin=\skip58
For additional information on amsmath, use the `?' option.
(/usr/local/texlive/2012/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2000/06/29 v2.01
(/usr/local/texlive/2012/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0
\@emptytoks=\toks22
\ex@=\dimen118
))
(/usr/local/texlive/2012/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d
\pmbraise@=\dimen119
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 1999/12/14 v2.01 operator names
)
\inf@bad=\count110
LaTeX Info: Redefining \frac on input line 211.
\uproot@=\count111
\leftroot@=\count112
LaTeX Info: Redefining \overline on input line 307.
\classnum@=\count113
\DOTSCASE@=\count114
LaTeX Info: Redefining \ldots on input line 379.
LaTeX Info: Redefining \dots on input line 382.
LaTeX Info: Redefining \cdots on input line 467.
\Mathstrutbox@=\box28
\strutbox@=\box29
\big@size=\dimen120
LaTeX Font Info: Redeclaring font encoding OML on input line 567.
LaTeX Font Info: Redeclaring font encoding OMS on input line 568.
\macc@depth=\count115
\c@MaxMatrixCols=\count116
\dotsspace@=\muskip11
\c@parentequation=\count117
\dspbrk@lvl=\count118
\tag@help=\toks23
\row@=\count119
\column@=\count120
\maxfields@=\count121
\andhelp@=\toks24
\eqnshift@=\dimen121
\alignsep@=\dimen122
\tagshift@=\dimen123
\tagwidth@=\dimen124
\totwidth@=\dimen125
\lineht@=\dimen126
\@envbody=\toks25
\multlinegap=\skip59
\multlinetaggap=\skip60
\mathdisplay@stack=\toks26
LaTeX Info: Redefining \[ on input line 2666.
LaTeX Info: Redefining \] on input line 2667.
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2009/06/22 v3.00
(/usr/local/texlive/2012/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2009/06/22 v3.00 Basic AMSFonts support
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 96.
))
(/usr/local/texlive/2012/texmf-dist/tex/latex/amscls/amsthm.sty
Package: amsthm 2009/07/02 v2.20.1
\thm@style=\toks27
\thm@bodyfont=\toks28
\thm@headfont=\toks29
\thm@notefont=\toks30
\thm@headpunct=\toks31
\thm@preskip=\skip61
\thm@postskip=\skip62
\thm@headsep=\skip63
\dth@everypar=\toks32
)
(/usr/local/texlive/2012/texmf-dist/tex/generic/mathabx/mathabx.sty
Package: mathabx 2003/07/29 v0.0 Non-standard LaTeX package mathabx
\symmatha=\mathgroup6
\symmathb=\mathgroup7
\symmathx=\mathgroup8
(/usr/local/texlive/2012/texmf-dist/tex/generic/mathabx/mathabx.dcl
LaTeX Font Info: Redeclaring math symbol \cdotp on input line 25.
LaTeX Font Info: Redeclaring math symbol \times on input line 33.
LaTeX Font Info: Redeclaring math symbol \div on input line 34.
LaTeX Font Info: Redeclaring math symbol \cdot on input line 35.
LaTeX Font Info: Redeclaring math symbol \circ on input line 36.
LaTeX Font Info: Redeclaring math symbol \ast on input line 38.
LaTeX Font Info: Redeclaring math symbol \pm on input line 41.
LaTeX Font Info: Redeclaring math symbol \mp on input line 42.
LaTeX Font Info: Redeclaring math symbol \ltimes on input line 43.
LaTeX Font Info: Redeclaring math symbol \rtimes on input line 44.
LaTeX Font Info: Redeclaring math symbol \diamond on input line 45.
LaTeX Font Info: Redeclaring math symbol \bullet on input line 46.
LaTeX Font Info: Redeclaring math symbol \star on input line 47.
LaTeX Font Info: Redeclaring math symbol \amalg on input line 51.
LaTeX Font Info: Redeclaring math symbol \dotplus on input line 58.
LaTeX Font Info: Redeclaring math symbol \square on input line 63.
LaTeX Font Info: Redeclaring math symbol \divideontimes on input line 71.
LaTeX Font Info: Redeclaring math symbol \bigstar on input line 75.
LaTeX Font Info: Redeclaring math symbol \equiv on input line 83.
LaTeX Font Info: Redeclaring math symbol \sim on input line 84.
LaTeX Font Info: Redeclaring math symbol \approx on input line 85.
LaTeX Font Info: Redeclaring math symbol \simeq on input line 86.
LaTeX Font Info: Redeclaring math symbol \asymp on input line 89.
LaTeX Font Info: Redeclaring math symbol \nsim on input line 97.
LaTeX Font Info: Redeclaring math symbol \ncong on input line 100.
LaTeX Font Info: Redeclaring math symbol \risingdotseq on input line 118.
LaTeX Font Info: Redeclaring math symbol \fallingdotseq on input line 119.
LaTeX Font Info: Redeclaring math symbol \circeq on input line 125.
LaTeX Font Info: Redeclaring math symbol \eqcirc on input line 126.
LaTeX Font Info: Redeclaring math symbol \triangleq on input line 127.
LaTeX Font Info: Redeclaring math symbol \neg on input line 134.
LaTeX Font Info: Redeclaring math symbol \ll on input line 136.
LaTeX Font Info: Redeclaring math symbol \gg on input line 137.
LaTeX Font Info: Redeclaring math symbol \vdash on input line 139.
LaTeX Font Info: Redeclaring math symbol \dashv on input line 140.
LaTeX Font Info: Redeclaring math symbol \nvdash on input line 141.
LaTeX Font Info: Redeclaring math symbol \vDash on input line 143.
LaTeX Font Info: Redeclaring math symbol \nvDash on input line 145.
LaTeX Font Info: Redeclaring math symbol \Vdash on input line 147.
LaTeX Font Info: Redeclaring math symbol \nVdash on input line 149.
LaTeX Font Info: Redeclaring math symbol \flat on input line 158.
LaTeX Font Info: Redeclaring math symbol \natural on input line 159.
LaTeX Font Info: Redeclaring math symbol \sharp on input line 160.
LaTeX Font Info: Redeclaring math symbol \infty on input line 161.
LaTeX Font Info: Redeclaring math symbol \propto on input line 162.
LaTeX Font Info: Redeclaring math symbol \dagger on input line 163.
LaTeX Font Info: Redeclaring math symbol \ddagger on input line 164.
LaTeX Font Info: Redeclaring math symbol \between on input line 170.
LaTeX Font Info: Redeclaring math symbol \smile on input line 171.
LaTeX Font Info: Redeclaring math symbol \frown on input line 172.
LaTeX Font Info: Redeclaring math symbol \leftthreetimes on input line 174.
LaTeX Font Info: Redeclaring math symbol \rightthreetimes on input line 175.
LaTeX Font Info: Redeclaring math symbol \pitchfork on input line 176.
LaTeX Font Info: Redeclaring math symbol \nVDash on input line 182.
LaTeX Font Info: Redeclaring math symbol \Vvdash on input line 184.
LaTeX Font Info: Redeclaring math symbol \therefore on input line 189.
LaTeX Font Info: Redeclaring math symbol \because on input line 190.
LaTeX Font Info: Redeclaring math symbol \measuredangle on input line 202.
LaTeX Font Info: Redeclaring math symbol \sphericalangle on input line 203.
LaTeX Font Info: Redeclaring math symbol \setminus on input line 218.
LaTeX Font Info: Redeclaring math symbol \mid on input line 222.
LaTeX Font Info: Redeclaring math symbol \forall on input line 279.
LaTeX Font Info: Redeclaring math symbol \complement on input line 280.
LaTeX Font Info: Redeclaring math symbol \partial on input line 281.
LaTeX Font Info: Redeclaring math symbol \exists on input line 284.
LaTeX Font Info: Redeclaring math symbol \nexists on input line 285.
LaTeX Font Info: Redeclaring math symbol \Finv on input line 286.
LaTeX Font Info: Redeclaring math symbol \Game on input line 287.
LaTeX Font Info: Redeclaring math symbol \emptyset on input line 288.
LaTeX Font Info: Redeclaring math symbol \top on input line 290.
LaTeX Font Info: Redeclaring math symbol \bot on input line 291.
LaTeX Font Info: Redeclaring math symbol \perp on input line 292.
LaTeX Font Info: Redeclaring math symbol \curlywedge on input line 296.
LaTeX Font Info: Redeclaring math symbol \curlyvee on input line 297.
LaTeX Font Info: Redeclaring math symbol \in on input line 299.
LaTeX Font Info: Redeclaring math symbol \owns on input line 300.
LaTeX Font Info: Redeclaring math symbol \cap on input line 312.
LaTeX Font Info: Redeclaring math symbol \cup on input line 313.
LaTeX Font Info: Redeclaring math symbol \uplus on input line 314.
LaTeX Font Info: Redeclaring math symbol \sqcap on input line 315.
LaTeX Font Info: Redeclaring math symbol \sqcup on input line 316.
LaTeX Font Info: Redeclaring math symbol \wedge on input line 318.
LaTeX Font Info: Redeclaring math symbol \vee on input line 320.
LaTeX Font Info: Redeclaring math symbol \barwedge on input line 327.
LaTeX Font Info: Redeclaring math symbol \veebar on input line 328.
LaTeX Font Info: Redeclaring math symbol \doublebarwedge on input line 329.
LaTeX Font Info: Redeclaring math symbol \doublecap on input line 331.
LaTeX Font Info: Redeclaring math symbol \doublecup on input line 333.
LaTeX Font Info: Redeclaring math symbol \subset on input line 344.
LaTeX Font Info: Redeclaring math symbol \supset on input line 345.
LaTeX Font Info: Redeclaring math symbol \subseteq on input line 348.
LaTeX Font Info: Redeclaring math symbol \supseteq on input line 349.
LaTeX Font Info: Redeclaring math symbol \nsubseteq on input line 350.
LaTeX Font Info: Redeclaring math symbol \nsupseteq on input line 351.
LaTeX Font Info: Redeclaring math symbol \subsetneq on input line 352.
LaTeX Font Info: Redeclaring math symbol \supsetneq on input line 353.
LaTeX Font Info: Redeclaring math symbol \varsubsetneq on input line 354.
LaTeX Font Info: Redeclaring math symbol \varsupsetneq on input line 355.
LaTeX Font Info: Redeclaring math symbol \subseteqq on input line 357.
LaTeX Font Info: Redeclaring math symbol \supseteqq on input line 358.
LaTeX Font Info: Redeclaring math symbol \nsubseteqq on input line 359.
LaTeX Font Info: Redeclaring math symbol \nsupseteqq on input line 360.
LaTeX Font Info: Redeclaring math symbol \subsetneqq on input line 361.
LaTeX Font Info: Redeclaring math symbol \supsetneqq on input line 362.
LaTeX Font Info: Redeclaring math symbol \varsubsetneqq on input line 363.
LaTeX Font Info: Redeclaring math symbol \varsupsetneqq on input line 364.
LaTeX Font Info: Redeclaring math symbol \Subset on input line 366.
LaTeX Font Info: Redeclaring math symbol \Supset on input line 367.
LaTeX Font Info: Redeclaring math symbol \sqsubseteq on input line 380.
LaTeX Font Info: Redeclaring math symbol \sqsupseteq on input line 381.
LaTeX Font Info: Redeclaring math symbol \triangleleft on input line 407.
LaTeX Font Info: Redeclaring math symbol \vartriangleleft on input line 408.
LaTeX Font Info: Redeclaring math symbol \triangleright on input line 409.
LaTeX Font Info: Redeclaring math symbol \vartriangleright on input line 410
.
LaTeX Font Info: Redeclaring math symbol \ntriangleleft on input line 411.
LaTeX Font Info: Redeclaring math symbol \ntriangleright on input line 412.
LaTeX Font Info: Redeclaring math symbol \trianglelefteq on input line 413.
LaTeX Font Info: Redeclaring math symbol \trianglerighteq on input line 414.
LaTeX Font Info: Redeclaring math symbol \ntrianglelefteq on input line 415.
LaTeX Font Info: Redeclaring math symbol \ntrianglerighteq on input line 416
.
LaTeX Font Info: Redeclaring math symbol \blacktriangledown on input line 42
7.
LaTeX Font Info: Redeclaring math symbol \blacktriangleleft on input line 42
8.
LaTeX Font Info: Redeclaring math symbol \blacktriangleright on input line 4
29.
LaTeX Font Info: Redeclaring math symbol \nless on input line 437.
LaTeX Font Info: Redeclaring math symbol \ngtr on input line 438.
LaTeX Font Info: Redeclaring math symbol \leq on input line 439.
LaTeX Font Info: Redeclaring math symbol \geq on input line 441.
LaTeX Font Info: Redeclaring math symbol \nleq on input line 443.
LaTeX Font Info: Redeclaring math symbol \ngeq on input line 445.
LaTeX Font Info: Redeclaring math symbol \lneq on input line 451.
LaTeX Font Info: Redeclaring math symbol \gneq on input line 452.
LaTeX Font Info: Redeclaring math symbol \leqq on input line 453.
LaTeX Font Info: Redeclaring math symbol \geqq on input line 454.
LaTeX Font Info: Redeclaring math symbol \nleqq on input line 455.
LaTeX Font Info: Redeclaring math symbol \ngeqq on input line 456.
LaTeX Font Info: Redeclaring math symbol \lneqq on input line 457.
LaTeX Font Info: Redeclaring math symbol \gneqq on input line 458.
LaTeX Font Info: Redeclaring math symbol \lvertneqq on input line 459.
LaTeX Font Info: Redeclaring math symbol \gvertneqq on input line 460.
LaTeX Font Info: Redeclaring math symbol \eqslantless on input line 461.
LaTeX Font Info: Redeclaring math symbol \eqslantgtr on input line 462.
LaTeX Font Info: Redeclaring math symbol \lessgtr on input line 465.
LaTeX Font Info: Redeclaring math symbol \gtrless on input line 466.
LaTeX Font Info: Redeclaring math symbol \lesseqgtr on input line 467.
LaTeX Font Info: Redeclaring math symbol \gtreqless on input line 468.
LaTeX Font Info: Redeclaring math symbol \lesseqqgtr on input line 469.
LaTeX Font Info: Redeclaring math symbol \gtreqqless on input line 470.
LaTeX Font Info: Redeclaring math symbol \lesssim on input line 472.
LaTeX Font Info: Redeclaring math symbol \gtrsim on input line 473.
LaTeX Font Info: Redeclaring math symbol \lnsim on input line 476.
LaTeX Font Info: Redeclaring math symbol \gnsim on input line 477.
LaTeX Font Info: Redeclaring math symbol \lessapprox on input line 478.
LaTeX Font Info: Redeclaring math symbol \gtrapprox on input line 479.
LaTeX Font Info: Redeclaring math symbol \lnapprox on input line 482.
LaTeX Font Info: Redeclaring math symbol \gnapprox on input line 483.
LaTeX Font Info: Redeclaring math symbol \lessdot on input line 485.
LaTeX Font Info: Redeclaring math symbol \gtrdot on input line 486.
LaTeX Font Info: Redeclaring math symbol \lll on input line 488.
LaTeX Font Info: Redeclaring math symbol \ggg on input line 489.
LaTeX Font Info: Redeclaring math symbol \prec on input line 498.
LaTeX Font Info: Redeclaring math symbol \succ on input line 499.
LaTeX Font Info: Redeclaring math symbol \nprec on input line 500.
LaTeX Font Info: Redeclaring math symbol \nsucc on input line 501.
LaTeX Font Info: Redeclaring math symbol \preccurlyeq on input line 502.
LaTeX Font Info: Redeclaring math symbol \succcurlyeq on input line 503.
LaTeX Font Info: Redeclaring math symbol \preceq on input line 506.
LaTeX Font Info: Redeclaring math symbol \succeq on input line 507.
LaTeX Font Info: Redeclaring math symbol \npreceq on input line 508.
LaTeX Font Info: Redeclaring math symbol \nsucceq on input line 509.
LaTeX Font Info: Redeclaring math symbol \curlyeqprec on input line 512.
LaTeX Font Info: Redeclaring math symbol \curlyeqsucc on input line 513.
LaTeX Font Info: Redeclaring math symbol \precsim on input line 517.
LaTeX Font Info: Redeclaring math symbol \succsim on input line 518.
LaTeX Font Info: Redeclaring math symbol \precnsim on input line 521.
LaTeX Font Info: Redeclaring math symbol \succnsim on input line 522.
LaTeX Font Info: Redeclaring math symbol \precapprox on input line 523.
LaTeX Font Info: Redeclaring math symbol \succapprox on input line 524.
LaTeX Font Info: Redeclaring math symbol \precnapprox on input line 527.
LaTeX Font Info: Redeclaring math symbol \succnapprox on input line 528.
LaTeX Font Info: Redeclaring math symbol \leftarrow on input line 540.
LaTeX Font Info: Redeclaring math symbol \rightarrow on input line 542.
LaTeX Font Info: Redeclaring math symbol \nwarrow on input line 546.
LaTeX Font Info: Redeclaring math symbol \nearrow on input line 547.
LaTeX Font Info: Redeclaring math symbol \swarrow on input line 548.
LaTeX Font Info: Redeclaring math symbol \searrow on input line 549.
LaTeX Font Info: Redeclaring math symbol \leftrightarrow on input line 550.
LaTeX Font Info: Redeclaring math symbol \nleftarrow on input line 552.
LaTeX Font Info: Redeclaring math symbol \nrightarrow on input line 553.
LaTeX Font Info: Redeclaring math symbol \nleftrightarrow on input line 554.
LaTeX Font Info: Redeclaring math symbol \mapstochar on input line 557.
LaTeX Font Info: Redeclaring math symbol \leftharpoonup on input line 560.
LaTeX Font Info: Redeclaring math symbol \rightharpoonup on input line 561.
LaTeX Font Info: Redeclaring math symbol \leftharpoondown on input line 562.
LaTeX Font Info: Redeclaring math symbol \rightharpoondown on input line 563
.
LaTeX Font Info: Redeclaring math symbol \upharpoonleft on input line 564.
LaTeX Font Info: Redeclaring math symbol \downharpoonleft on input line 565.
LaTeX Font Info: Redeclaring math symbol \upharpoonright on input line 566.
LaTeX Font Info: Redeclaring math symbol \restriction on input line 567.
LaTeX Font Info: Redeclaring math symbol \downharpoonright on input line 568
.
LaTeX Font Info: Redeclaring math symbol \leftrightharpoons on input line 56
9.
LaTeX Font Info: Redeclaring math symbol \Leftarrow on input line 575.
LaTeX Font Info: Redeclaring math symbol \Rightarrow on input line 576.
LaTeX Font Info: Redeclaring math symbol \Leftrightarrow on input line 579.
LaTeX Font Info: Redeclaring math symbol \nLeftarrow on input line 581.
LaTeX Font Info: Redeclaring math symbol \nRightarrow on input line 582.
LaTeX Font Info: Redeclaring math symbol \nLeftrightarrow on input line 583.
LaTeX Font Info: Redeclaring math symbol \leftleftarrows on input line 593.
LaTeX Font Info: Redeclaring math symbol \rightrightarrows on input line 594
.
LaTeX Font Info: Redeclaring math symbol \upuparrows on input line 595.
LaTeX Font Info: Redeclaring math symbol \downdownarrows on input line 596.
LaTeX Font Info: Redeclaring math symbol \leftrightarrows on input line 597.
LaTeX Font Info: Redeclaring math symbol \rightleftarrows on input line 598.
LaTeX Font Info: Redeclaring math symbol \rhook on input line 612.
LaTeX Font Info: Redeclaring math symbol \lhook on input line 613.
LaTeX Font Info: Redeclaring math symbol \diagup on input line 614.
LaTeX Font Info: Redeclaring math symbol \diagdown on input line 615.
LaTeX Font Info: Redeclaring math symbol \Lsh on input line 617.
LaTeX Font Info: Redeclaring math symbol \Rsh on input line 619.
LaTeX Font Info: Redeclaring math symbol \looparrowleft on input line 624.
LaTeX Font Info: Redeclaring math symbol \looparrowright on input line 626.
LaTeX Font Info: Redeclaring math symbol \curvearrowleft on input line 631.
LaTeX Font Info: Redeclaring math symbol \curvearrowright on input line 633.
LaTeX Font Info: Redeclaring math symbol \circlearrowleft on input line 641.
LaTeX Font Info: Redeclaring math symbol \circlearrowright on input line 642
.
LaTeX Font Info: Redeclaring math symbol \rightsquigarrow on input line 645.
LaTeX Font Info: Redeclaring math symbol \leftrightsquigarrow on input line
646.
LaTeX Font Info: Redeclaring math symbol \oplus on input line 658.
LaTeX Font Info: Redeclaring math symbol \ominus on input line 659.
LaTeX Font Info: Redeclaring math symbol \otimes on input line 661.
LaTeX Font Info: Redeclaring math symbol \odot on input line 663.
LaTeX Font Info: Redeclaring math symbol \oslash on input line 675.
LaTeX Font Info: Redeclaring math symbol \boxplus on input line 683.
LaTeX Font Info: Redeclaring math symbol \boxminus on input line 684.
LaTeX Font Info: Redeclaring math symbol \boxtimes on input line 686.
LaTeX Font Info: Redeclaring math symbol \boxdot on input line 688.
\mayacnter=\count122
\mayacnta=\count123
\mayacntb=\count124
\mayacntc=\count125
\mayawidth=\dimen127
LaTeX Font Info: Redeclaring math symbol \intop on input line 753.
LaTeX Font Info: Redeclaring math symbol \ointop on input line 760.
LaTeX Font Info: Redeclaring math delimiter \lbrace on input line 842.
LaTeX Info: Redefining \{ on input line 846.
LaTeX Font Info: Redeclaring math delimiter \rbrace on input line 848.
LaTeX Info: Redefining \} on input line 852.
LaTeX Font Info: Redeclaring math delimiter \langle on input line 858.
LaTeX Font Info: Redeclaring math delimiter \rangle on input line 859.
LaTeX Font Info: Redeclaring math delimiter \vert on input line 863.
LaTeX Font Info: Redeclaring math delimiter \Vert on input line 865.
LaTeX Font Info: Redeclaring math delimiter \uparrow on input line 868.
LaTeX Font Info: Redeclaring math delimiter \downarrow on input line 869.
LaTeX Font Info: Redeclaring math delimiter \updownarrow on input line 870.
LaTeX Font Info: Redeclaring math delimiter \Uparrow on input line 871.
LaTeX Font Info: Redeclaring math delimiter \Downarrow on input line 872.
LaTeX Font Info: Redeclaring math delimiter \Updownarrow on input line 873.
LaTeX Font Info: Redeclaring math delimiter \lgroup on input line 880.
LaTeX Font Info: Redeclaring math delimiter \rgroup on input line 881.
LaTeX Font Info: Redeclaring math delimiter \lceil on input line 882.
LaTeX Font Info: Redeclaring math delimiter \rceil on input line 883.
LaTeX Font Info: Redeclaring math delimiter \lfloor on input line 884.
LaTeX Font Info: Redeclaring math delimiter \rfloor on input line 885.
LaTeX Font Info: Redeclaring math symbol \braceld on input line 903.
LaTeX Font Info: Redeclaring math symbol \bracerd on input line 905.
LaTeX Font Info: Redeclaring math symbol \bracelu on input line 907.
LaTeX Font Info: Redeclaring math symbol \braceru on input line 909.
LaTeX Font Info: Redeclaring math accent \widehat on input line 944.
LaTeX Font Info: Redeclaring math accent \widetilde on input line 946.
))
(/usr/local/texlive/2012/texmf-dist/tex/latex/tools/bm.sty
Package: bm 2004/02/26 v1.1c Bold Symbol Support (DPC/FMi)
\symboldoperators=\mathgroup9
\symboldletters=\mathgroup10
\symboldsymbols=\mathgroup11
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 138.
LaTeX Info: Redefining \bm on input line 204.
)
(./wu_final_report.aux
LaTeX Warning: Label `child' multiply defined.
)
\openout1 = `wu_final_report.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 20.
LaTeX Font Info: ... okay on input line 20.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 20.
LaTeX Font Info: ... okay on input line 20.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 20.
LaTeX Font Info: ... okay on input line 20.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 20.
LaTeX Font Info: ... okay on input line 20.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 20.
LaTeX Font Info: ... okay on input line 20.
LaTeX Font Info: Checking defaults for U/mathx/m/n on input line 20.
LaTeX Font Info: ... okay on input line 20.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 20.
LaTeX Font Info: ... okay on input line 20.
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
*geometry* verbose mode - [ preamble ] result:
* driver: pdftex
* paper: letterpaper
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes:
* h-part:(L,W,R)=(92.14519pt, 430.00462pt, 92.14519pt)
* v-part:(T,H,B)=(95.39737pt, 556.47656pt, 143.09605pt)
* \paperwidth=614.295pt
* \paperheight=794.96999pt
* \textwidth=469.75502pt
* \textheight=620.43001pt
* \oddsidemargin=0.0pt
* \evensidemargin=0.0pt
* \topmargin=0.0pt
* \headheight=0.0pt
* \headsep=0.0pt
* \topskip=12.0pt
* \footskip=30.0pt
* \marginparwidth=44.0pt
* \marginparsep=10.0pt
* \columnsep=10.0pt
* \skip\footins=10.8pt plus 4.0pt minus 2.0pt
* \hoffset=0.0pt
* \voffset=0.0pt
* \mag=1000
* \@twocolumnfalse
* \@twosidefalse
* \@mparswitchfalse
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
\AtBeginShipoutBox=\box30
Package hyperref Info: Link coloring OFF on input line 20.
(/usr/local/texlive/2012/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2010/04/30 v2.40 Cross-referencing by name of section
(/usr/local/texlive/2012/texmf-dist/tex/generic/oberdiek/gettitlestring.sty
Package: gettitlestring 2010/12/03 v1.4 Cleanup title references (HO)
)
\c@section@level=\count126
)
LaTeX Info: Redefining \ref on input line 20.
LaTeX Info: Redefining \pageref on input line 20.
LaTeX Info: Redefining \nameref on input line 20.
(./wu_final_report.out) (./wu_final_report.out)
\@outlinefile=\write3
\openout3 = `wu_final_report.out'.
(/usr/local/texlive/2012/texmf-dist/tex/context/base/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count127
\scratchdimen=\dimen128
\scratchbox=\box31
\nofMPsegments=\count128
\nofMParguments=\count129
\everyMPshowfont=\toks33
\MPscratchCnt=\count130
\MPscratchDim=\dimen129
\MPnumerator=\count131
\makeMPintoPDFobject=\count132
\everyMPtoPDFconversion=\toks34
) (/usr/local/texlive/2012/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
Package: epstopdf-base 2010/02/09 v2.5 Base part for package epstopdf
(/usr/local/texlive/2012/texmf-dist/tex/latex/oberdiek/grfext.sty
Package: grfext 2010/08/19 v1.1 Manage graphics extensions (HO)
)
Package grfext Info: Graphics extension search list:
(grfext) [.png,.pdf,.jpg,.mps,.jpeg,.jbig2,.jb2,.PNG,.PDF,.JPG,.JPE
G,.JBIG2,.JB2,.eps]
(grfext) \AppendGraphicsExtensions on input line 452.
(/usr/local/texlive/2012/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
e
))
LaTeX Font Info: Try loading font information for U+msa on input line 27.
(/usr/local/texlive/2012/texmf-dist/tex/latex/amsfonts/umsa.fd
File: umsa.fd 2009/06/22 v3.00 AMS symbols A
)
LaTeX Font Info: Try loading font information for U+msb on input line 27.
(/usr/local/texlive/2012/texmf-dist/tex/latex/amsfonts/umsb.fd
File: umsb.fd 2009/06/22 v3.00 AMS symbols B
) [1
{/usr/local/texlive/2012/texmf-var/fonts/map/pdftex/updmap/pdftex.map}] [2]
<data/SeamlessCloning/water/water_back.jpeg, id=82, 259.97125pt x 173.64874pt>
File: data/SeamlessCloning/water/water_back.jpeg Graphic file (type jpg)
<use data/SeamlessCloning/water/water_back.jpeg>
Package pdftex.def Info: data/SeamlessCloning/water/water_back.jpeg used on inp
ut line 83.
(pdftex.def) Requested size: 230.18253pt x 153.75198pt.
<data/SeamlessCloning/water/water_front.png, id=83, 246.28856pt x 164.50934pt>
File: data/SeamlessCloning/water/water_front.png Graphic file (type png)
<use data/SeamlessCloning/water/water_front.png>
Package pdftex.def Info: data/SeamlessCloning/water/water_front.png used on inp
ut line 84.
(pdftex.def) Requested size: 230.18253pt x 153.75519pt.
<data/SeamlessCloning/water/direct_pasting.jpg, id=85, 824.07875pt x 551.05875p
t>
File: data/SeamlessCloning/water/direct_pasting.jpg Graphic file (type jpg)
<use data/SeamlessCloning/water/direct_pasting.jpg>
Package pdftex.def Info: data/SeamlessCloning/water/direct_pasting.jpg used on
input line 85.
(pdftex.def) Requested size: 230.18253pt x 153.917pt.
<data/SeamlessCloning/water/cloned.jpg, id=86, 824.07875pt x 551.05875pt>
File: data/SeamlessCloning/water/cloned.jpg Graphic file (type jpg)
<use data/SeamlessCloning/water/cloned.jpg>
Package pdftex.def Info: data/SeamlessCloning/water/cloned.jpg used on input li
ne 86.
(pdftex.def) Requested size: 230.18253pt x 153.917pt.
[3 <./data/SeamlessCloning/water/water_back.jpeg> <./data/SeamlessCloning/wate
r/water_front.png> <./data/SeamlessCloning/water/direct_pasting.jpg> <./data/Se
amlessCloning/water/cloned.jpg>]
<data/SeamlessCloning/f16/F16Source.jpg, id=95, 401.5pt x 301.125pt>
File: data/SeamlessCloning/f16/F16Source.jpg Graphic file (type jpg)
<use data/SeamlessCloning/f16/F16Source.jpg>
Package pdftex.def Info: data/SeamlessCloning/f16/F16Source.jpg used on input l
ine 95.
(pdftex.def) Requested size: 117.43875pt x 88.07755pt.
<data/SeamlessCloning/f16/F16Target.jpg, id=96, 616.3025pt x 462.72874pt>
File: data/SeamlessCloning/f16/F16Target.jpg Graphic file (type jpg)
<use data/SeamlessCloning/f16/F16Target.jpg>
Package pdftex.def Info: data/SeamlessCloning/f16/F16Target.jpg used on input l
ine 96.
(pdftex.def) Requested size: 117.43875pt x 88.17355pt.
<data/SeamlessCloning/f16/cloned.jpg, id=97, 1007.765pt x 757.83125pt>
File: data/SeamlessCloning/f16/cloned.jpg Graphic file (type jpg)
<use data/SeamlessCloning/f16/cloned.jpg>
Package pdftex.def Info: data/SeamlessCloning/f16/cloned.jpg used on input line
97.
(pdftex.def) Requested size: 164.41711pt x 123.63757pt.
<data/MixedSeamlessCloning/mixed2/cat.jpg, id=99, 742.775pt x 742.775pt>
File: data/MixedSeamlessCloning/mixed2/cat.jpg Graphic file (type jpg)
<use data/MixedSeamlessCloning/mixed2/cat.jpg>
Package pdftex.def Info: data/MixedSeamlessCloning/mixed2/cat.jpg used on input
line 110.
(pdftex.def) Requested size: 112.74377pt x 112.73749pt.
<data/MixedSeamlessCloning/mixed2/hawaii.jpg, id=100, 742.775pt x 1003.75pt>
File: data/MixedSeamlessCloning/mixed2/hawaii.jpg Graphic file (type jpg)
<use data/MixedSeamlessCloning/mixed2/hawaii.jpg>
Package pdftex.def Info: data/MixedSeamlessCloning/mixed2/hawaii.jpg used on in
put line 111.
(pdftex.def) Requested size: 112.74377pt x 152.34796pt.
<data/MixedSeamlessCloning/mixed2/cloned.jpg, id=101, 617.30624pt x 835.12pt>
File: data/MixedSeamlessCloning/mixed2/cloned.jpg Graphic file (type jpg)
<use data/MixedSeamlessCloning/mixed2/cloned.jpg>
Package pdftex.def Info: data/MixedSeamlessCloning/mixed2/cloned.jpg used on in
put line 112.
(pdftex.def) Requested size: 112.74377pt x 152.51962pt.
<data/MixedSeamlessCloning/mixed2/mixed_cloned.jpg, id=102, 617.30624pt x 835.1
2pt>
File: data/MixedSeamlessCloning/mixed2/mixed_cloned.jpg Graphic file (type jpg)
<use data/MixedSeamlessCloning/mixed2/mixed_cloned.jpg>
Package pdftex.def Info: data/MixedSeamlessCloning/mixed2/mixed_cloned.jpg used
on input line 113.
(pdftex.def) Requested size: 112.74377pt x 152.51962pt.
[4 <./data/SeamlessCloning/f16/F16Source.jpg> <./data/SeamlessCloning/f16/F16T
arget.jpg> <./data/SeamlessCloning/f16/cloned.jpg>]
<data/SeamlessCloning/siblings/siblings_fore.jpg, id=109, 2055.68pt x 1370.1187
4pt>
File: data/SeamlessCloning/siblings/siblings_fore.jpg Graphic file (type jpg)
<use data/SeamlessCloning/siblings/siblings_fore.jpg>
Package pdftex.def Info: data/SeamlessCloning/siblings/siblings_fore.jpg used o
n input line 121.
(pdftex.def) Requested size: 112.74377pt x 75.13724pt.
<data/SeamlessCloning/siblings/siblings.jpg, id=110, 2055.68pt x 1370.11874pt>
File: data/SeamlessCloning/siblings/siblings.jpg Graphic file (type jpg)
<use data/SeamlessCloning/siblings/siblings.jpg>
Package pdftex.def Info: data/SeamlessCloning/siblings/siblings.jpg used on inp
ut line 122.
(pdftex.def) Requested size: 112.74377pt x 75.13724pt.
<data/SeamlessCloning/siblings/cloned.jpg, id=111, 1078.0275pt x 719.68875pt>
File: data/SeamlessCloning/siblings/cloned.jpg Graphic file (type jpg)
<use data/SeamlessCloning/siblings/cloned.jpg>
Package pdftex.def Info: data/SeamlessCloning/siblings/cloned.jpg used on input
line 123.
(pdftex.def) Requested size: 112.74377pt x 75.26755pt.
<data/SeamlessCloning/siblings/mixed_cloned.jpg, id=112, 1078.0275pt x 718.685p
t>
File: data/SeamlessCloning/siblings/mixed_cloned.jpg Graphic file (type jpg)
<use data/SeamlessCloning/siblings/mixed_cloned.jpg>
Package pdftex.def Info: data/SeamlessCloning/siblings/mixed_cloned.jpg used on
input line 124.
(pdftex.def) Requested size: 112.74377pt x 75.16257pt.
<data/TextureFlattening/child/child.jpg, id=114, 230.8625pt x 301.125pt>
File: data/TextureFlattening/child/child.jpg Graphic file (type jpg)
<use data/TextureFlattening/child/child.jpg>
Package pdftex.def Info: data/TextureFlattening/child/child.jpg used on input l
ine 135.
(pdftex.def) Requested size: 187.89914pt x 245.08617pt.
<data/TextureFlattening/child/texture_flatten.jpg, id=115, 585.18625pt x 763.85
374pt>
File: data/TextureFlattening/child/texture_flatten.jpg Graphic file (type jpg)
<use data/TextureFlattening/child/texture_flatten.jpg>
Package pdftex.def Info: data/TextureFlattening/child/texture_flatten.jpg used
on input line 136.
(pdftex.def) Requested size: 187.89914pt x 245.26572pt.
[5 <./data/MixedSeamlessCloning/mixed2/cat.jpg> <./data/MixedSeamlessCloning/m
ixed2/hawaii.jpg> <./data/MixedSeamlessCloning/mixed2/cloned.jpg> <./data/Mixed
SeamlessCloning/mixed2/mixed_cloned.jpg> <./data/SeamlessCloning/siblings/sibli
ngs_fore.jpg> <./data/SeamlessCloning/siblings/siblings.jpg> <./data/SeamlessCl
oning/siblings/cloned.jpg> <./data/SeamlessCloning/siblings/mixed_cloned.jpg>]
<data/TextureFlattening/food/food.jpg, id=122, 963.6pt x 642.4pt>
File: data/TextureFlattening/food/food.jpg Graphic file (type jpg)
<use data/TextureFlattening/food/food.jpg>
Package pdftex.def Info: data/TextureFlattening/food/food.jpg used on input lin
e 143.
(pdftex.def) Requested size: 187.89914pt x 125.26259pt.
<data/TextureFlattening/food/texture_flatten.jpg, id=123, 1071.00125pt x 714.67
pt>
File: data/TextureFlattening/food/texture_flatten.jpg Graphic file (type jpg)
<use data/TextureFlattening/food/texture_flatten.jpg>
Package pdftex.def Info: data/TextureFlattening/food/texture_flatten.jpg used o
n input line 144.
(pdftex.def) Requested size: 187.89914pt x 125.37445pt.
[6 <./data/TextureFlattening/child/child.jpg> <./data/TextureFlattening/child/
texture_flatten.jpg> <./data/TextureFlattening/food/food.jpg> <./data/TextureFl
attening/food/texture_flatten.jpg>]
Underfull \hbox (badness 10000) in paragraph at lines 154--155
[]
LaTeX Font Info: Try loading font information for OML+cmr on input line 166.
(/usr/local/texlive/2012/texmf-dist/tex/latex/base/omlcmr.fd
File: omlcmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions
)
LaTeX Font Info: Font shape `OML/cmr/m/n' in size <12> not available
(Font) Font shape `OML/cmm/m/it' tried instead on input line 166.
Underfull \hbox (badness 10000) in paragraph at lines 166--167
[]\OT1/cmr/m/n/12 Adobe Light-room. Adobe, Inc. \OML/cmm/m/it/12 <[]$\OT1/cmtt/
m/n/12 https : / / www . adobe . com / products /
[]
Underfull \hbox (badness 3417) in paragraph at lines 169--170
[]\OT1/cmr/m/n/12 Adobe Pho-to-shop. Adobe, Inc. \OML/cmm/m/it/12 <[]$\OT1/cmtt
/m/n/12 http : / / www . adobe . com / products / photoshop .
[]
Underfull \hbox (badness 10000) in paragraph at lines 172--173
[]\OT1/cmr/m/n/12 MATLAB doc-u-men-ta-tion. \OML/cmm/m/it/12 <[]$\OT1/cmtt/m/n/
12 http : / / www . mathworks . com / help / matlab / ref /
[]
Package atveryend Info: Empty hook `BeforeClearDocument' on input line 179.
[7]
Package atveryend Info: Empty hook `AfterLastShipout' on input line 179.
(./wu_final_report.aux)
Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 179.
Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 179.
Package rerunfilecheck Warning: File `wu_final_report.out' has changed.
(rerunfilecheck) Rerun to get outlines right
(rerunfilecheck) or use package `bookmark'.
Package rerunfilecheck Info: Checksums for `wu_final_report.out':
(rerunfilecheck) Before: C920BDBB0366A30759F3E13340ACCF89;656
(rerunfilecheck) After: 5C50AF09FBD871BF36D5B3B1BCFD1081;761.
LaTeX Warning: There were multiply-defined labels.
Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 179.
)
Here is how much of TeX's memory you used:
7482 strings out of 493488
107544 string characters out of 3141326
194297 words of memory out of 3000000
10601 multiletter control sequences out of 15000+200000
26375 words of font info for 92 fonts, out of 3000000 for 9000
957 hyphenation exceptions out of 8191
29i,12n,43p,961b,353s stack positions out of 5000i,500n,10000p,200000b,50000s
</usr/local/texlive/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb
></usr/local/texlive/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi12.pfb>
</usr/local/texlive/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi6.pfb></
usr/local/texlive/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi8.pfb></us
r/local/texlive/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb></usr/
local/texlive/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb></usr/lo
cal/texlive/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmr6.pfb></usr/local
/texlive/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmr8.pfb></usr/local/te
xlive/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmtt12.pfb></usr/local/tex
live/2012/texmf-dist/fonts/type1/public/mathabx-type1/matha12.pfb></usr/local/t
exlive/2012/texmf-dist/fonts/type1/public/mathabx-type1/matha8.pfb></usr/local/
texlive/2012/texmf-dist/fonts/type1/public/mathabx-type1/mathx10.pfb>
Output written on wu_final_report.pdf (7 pages, 1933150 bytes).
PDF statistics:
201 PDF objects out of 1000 (max. 8388607)
158 compressed objects within 2 object streams
38 named destinations out of 1000 (max. 500000)
184 words of extra memory for PDF output out of 10000 (max. 10000000)