-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtccV-10.log
1042 lines (864 loc) · 32.7 KB
/
tccV-10.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
999
1000
This is pdfTeX, Version 3.14159265-2.6-1.40.17 (MiKTeX 2.9 64-bit) (preloaded format=pdflatex 2016.7.18) 21 JUL 2016 18:01
entering extended mode
**./tccV-10.tex
(tccV-10.tex
LaTeX2e <2016/03/31> patch level 1
Babel <3.9r> and hyphenation patterns for 75 language(s) loaded.
(ufscThesis.cls
Document Class: ufscThesis
(abnt.cls (cvs-id.def)
Document Class: abnt 2004/11/02 v1.27.2.1 Classe abnt (NBR6024, NBR6027, NBR602
8, NBR14724)
("C:\Program Files\MiKTeX 2.9\tex\latex\base\ifthen.sty"
Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
)
("C:\Program Files\MiKTeX 2.9\tex\latex\tools\calc.sty"
Package: calc 2014/10/28 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count79
\calc@Bcount=\count80
\calc@Adimen=\dimen102
\calc@Bdimen=\dimen103
\calc@Askip=\skip41
\calc@Bskip=\skip42
LaTeX Info: Redefining \setlength on input line 80.
LaTeX Info: Redefining \addtolength on input line 81.
\calc@Ccount=\count81
\calc@Cskip=\skip43
)
("C:\Program Files\MiKTeX 2.9\tex\latex\tools\multicol.sty"
Package: multicol 2016/04/07 v1.8p multicolumn formatting (FMi)
\c@tracingmulticols=\count82
\mult@box=\box26
\multicol@leftmargin=\dimen104
\c@unbalance=\count83
\c@collectmore=\count84
\doublecol@number=\count85
\multicoltolerance=\count86
\multicolpretolerance=\count87
\full@width=\dimen105
\page@free=\dimen106
\premulticols=\dimen107
\postmulticols=\dimen108
\multicolsep=\skip44
\multicolbaselineskip=\skip45
\partial@page=\box27
\last@line=\box28
\maxbalancingoverflow=\dimen109
\mult@rightbox=\box29
\mult@grightbox=\box30
\mult@gfirstbox=\box31
\mult@firstbox=\box32
\@tempa=\box33
\@tempa=\box34
\@tempa=\box35
\@tempa=\box36
\@tempa=\box37
\@tempa=\box38
\@tempa=\box39
\@tempa=\box40
\@tempa=\box41
\@tempa=\box42
\@tempa=\box43
\@tempa=\box44
\@tempa=\box45
\@tempa=\box46
\@tempa=\box47
\@tempa=\box48
\@tempa=\box49
\c@columnbadness=\count88
\c@finalcolumnbadness=\count89
\last@try=\dimen110
\multicolovershoot=\dimen111
\multicolundershoot=\dimen112
\mult@nat@firstbox=\box50
\colbreak@box=\box51
\mc@col@check@num=\count90
)
("C:\Program Files\MiKTeX 2.9\tex\latex\base\report.cls"
Document Class: report 2014/09/29 v1.4h Standard LaTeX document class
("C:\Program Files\MiKTeX 2.9\tex\latex\base\size10.clo"
File: size10.clo 2014/09/29 v1.4h Standard LaTeX file (size option)
)
\c@part=\count91
\c@chapter=\count92
\c@section=\count93
\c@subsection=\count94
\c@subsubsection=\count95
\c@paragraph=\count96
\c@subparagraph=\count97
\c@figure=\count98
\c@table=\count99
\abovecaptionskip=\skip46
\belowcaptionskip=\skip47
\bibindent=\dimen113
)
("C:\Program Files\MiKTeX 2.9\tex\latex\setspace\setspace.sty"
Package: setspace 2011/12/19 v6.7a set line spacing
)
\ABNTanapindent=\skip48
\ABNTsignwidth=\skip49
\ABNTsignthickness=\skip50
\ABNTsignskip=\skip51
("C:\Program Files\MiKTeX 2.9\tex\latex\tools\indentfirst.sty"
Package: indentfirst 1995/11/23 v1.03 Indent first paragraph (DPC)
))
("C:\Program Files\MiKTeX 2.9\tex\latex\geometry\geometry.sty"
Package: geometry 2010/09/12 v5.6 Page Geometry
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\keyval.sty"
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks14
)
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\ifpdf.sty"
Package: ifpdf 2016/05/14 v3.1 Provides the ifpdf switch
)
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\ifvtex.sty"
Package: ifvtex 2016/05/16 v1.6 Detect VTeX and its facilities (HO)
Package ifvtex Info: VTeX not detected.
)
("C:\Program Files\MiKTeX 2.9\tex\generic\ifxetex\ifxetex.sty"
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
\Gm@cnth=\count100
\Gm@cntv=\count101
\c@Gm@tempcnt=\count102
\Gm@bindingoffset=\dimen114
\Gm@wd@mp=\dimen115
\Gm@odd@mp=\dimen116
\Gm@even@mp=\dimen117
\Gm@layoutwidth=\dimen118
\Gm@layoutheight=\dimen119
\Gm@layouthoffset=\dimen120
\Gm@layoutvoffset=\dimen121
\Gm@dimlist=\toks15
("C:\Program Files\MiKTeX 2.9\tex\latex\geometry\geometry.cfg"))
(ufscThesis/BUUFSCthesis.sty
("C:\Program Files\MiKTeX 2.9\tex\generic\babel\babel.sty"
Package: babel 2016/04/23 3.9r The Babel package
*************************************
* Local config file bblopts.cfg used
*
("C:\Program Files\MiKTeX 2.9\tex\latex\arabi\bblopts.cfg"
File: bblopts.cfg 2005/09/08 v0.1 add Arabic and Farsi to "declared" options of
babel
)
("C:\Program Files\MiKTeX 2.9\tex\latex\babel-portuges\portuges.ldf"
Language: portuges 2008/03/18 v1.2q Portuguese support from the babel system
("C:\Program Files\MiKTeX 2.9\tex\generic\babel\babel.def"
File: babel.def 2016/04/23 3.9r Babel common definitions
\babel@savecnt=\count103
\U@D=\dimen122
)
\l@brazil = a dialect from \language\l@portuges
Package babel Info: Making " an active character on input line 145.
))
("C:\Program Files\MiKTeX 2.9\tex\latex\base\inputenc.sty"
Package: inputenc 2015/03/17 v1.2c Input encoding file
\inpenc@prehook=\toks16
\inpenc@posthook=\toks17
("C:\Program Files\MiKTeX 2.9\tex\latex\base\ansinew.def"
File: ansinew.def 2015/03/17 v1.2c Input encoding file
))
("C:\Program Files\MiKTeX 2.9\tex\latex\ulem\ulem.sty"
\UL@box=\box52
\UL@hyphenbox=\box53
\UL@skip=\skip52
\UL@hook=\toks18
\UL@height=\dimen123
\UL@pe=\count104
\UL@pixel=\dimen124
\ULC@box=\box54
Package: ulem 2012/05/18
\ULdepth=\dimen125
)
("C:\Program Files\MiKTeX 2.9\tex\latex\subfigure\subfigure.sty"
Package: subfigure 2002/07/30 v2.1.4 subfigure package
\subfigtopskip=\skip53
\subfigcapskip=\skip54
\subfigcaptopadj=\dimen126
\subfigbottomskip=\skip55
\subfigcapmargin=\dimen127
\subfiglabelskip=\skip56
\c@subfigure=\count105
\c@lofdepth=\count106
\c@subtable=\count107
\c@lotdepth=\count108
****************************************
* Local config file subfigure.cfg used *
****************************************
("C:\Program Files\MiKTeX 2.9\tex\latex\subfigure\subfigure.cfg")
\subfig@top=\skip57
\subfig@bottom=\skip58
)
("C:\Program Files\MiKTeX 2.9\tex\latex\carlisle\remreset.sty")
("C:\Program Files\MiKTeX 2.9\tex\latex\url\url.sty"
\Urlmuskip=\muskip10
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
) (abntcite.sty (cvs-id.def)
Package: abntcite 2003/10/13 v1.26 Chamadas de referencias no texto (NBR10520)
(abntex-abrev.sty (cvs-id.def)
Package: abntex-abrev 2003/10/13 v1.3 Abreviacoes
(nbr10522-1988.def (cvs-id.def)
File: nbr10522-1988.def 2003/10/13 v1.2 Abreviacoes bibliograficas (NBR10522:19
88)
)
(abntex-abrev-pt_BR.def (cvs-id.def)
File: abntex-abrev-pt_BR.def 2003/10/13 v1.2 definicao de abntex-abrev, traduca
o de termos en_US/pt_BR
)) (nbr10520-2002.def (cvs-id.def)
File: nbr10520-2002.def 2003/10/13 v1.2 Definicoes para abntcite (NBR10520:2002
)
)
\minimumbiblabelwidth=\skip59
\ABCIauxlen=\skip60
\c@ABCIaux=\count109
\c@ABCImax=\count110
("C:\Program Files\MiKTeX 2.9\tex\latex\ltxmisc\relsize.sty"
Package: relsize 2003/07/04 ver 3.1
)
\biblabelsep=\skip61
LaTeX Info: Redefining \newblock on input line 562.
LaTeX Info: Redefining \cite on input line 589.
\ABCItoken=\toks19
))
\espacosumario=\skip62
)
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\graphicx.sty"
Package: graphicx 2014/10/28 v1.0g Enhanced LaTeX Graphics (DPC,SPQR)
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\graphics.sty"
Package: graphics 2016/06/02 v1.0s Standard LaTeX Graphics (DPC,SPQR)
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\trig.sty"
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
)
("C:\Program Files\MiKTeX 2.9\tex\latex\00miktex\graphics.cfg"
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: pdftex.def on input line 99.
("C:\Program Files\MiKTeX 2.9\tex\latex\pdftex-def\pdftex.def"
File: pdftex.def 2016/06/17 v0.06h Graphics/color for pdfTeX
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\infwarerr.sty"
Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO)
)
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\ltxcmds.sty"
Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO)
)
\Gread@gobject=\count111
))
\Gin@req@height=\dimen128
\Gin@req@width=\dimen129
)
("C:\Program Files\MiKTeX 2.9\tex\latex\graphics\color.sty"
Package: color 2016/06/02 v1.1d Standard LaTeX Color (DPC)
("C:\Program Files\MiKTeX 2.9\tex\latex\00miktex\color.cfg"
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package color Info: Driver file: pdftex.def on input line 147.
)
("C:\Program Files\MiKTeX 2.9\tex\latex\listings\listings.sty"
\lst@mode=\count112
\lst@gtempboxa=\box55
\lst@token=\toks20
\lst@length=\count113
\lst@currlwidth=\dimen130
\lst@column=\count114
\lst@pos=\count115
\lst@lostspace=\dimen131
\lst@width=\dimen132
\lst@newlines=\count116
\lst@lineno=\count117
\lst@maxwidth=\dimen133
("C:\Program Files\MiKTeX 2.9\tex\latex\listings\lstmisc.sty"
File: lstmisc.sty 2015/06/04 1.6 (Carsten Heinz)
\c@lstnumber=\count118
\lst@skipnumbers=\count119
\lst@framebox=\box56
)
("C:\Program Files\MiKTeX 2.9\tex\latex\listings\listings.cfg"
File: listings.cfg 2015/06/04 1.6 listings configuration
))
Package: listings 2015/06/04 1.6 (Carsten Heinz)
("C:\Program Files\MiKTeX 2.9\tex\latex\algorithm2e\algorithm2e.sty"
Package: algorithm2e 2013/01/06 v5.00 algorithms environments
\c@AlgoLine=\count120
\algocf@hangindent=\skip63
("C:\Program Files\MiKTeX 2.9\tex\latex\tools\xspace.sty"
Package: xspace 2014/10/28 v1.13 Space after command names (DPC,MH)
)
********************************************************
Package `algorithm2e' Release 5.1 -- october 19 2015 --
- [email protected] mailing list for announcement about releases
- [email protected] mailing list for discussion about package
subscribe by emailing [email protected] with 'subscribe <list> <firstname name>'
- Author: Christophe Fiorio ([email protected])
********************************************************
\skiptotal=\skip64
\skiplinenumber=\skip65
\skiprule=\skip66
\skiphlne=\skip67
\skiptext=\skip68
\skiplength=\skip69
\algomargin=\skip70
\skipalgocfslide=\skip71
\algowidth=\dimen134
\inoutsize=\dimen135
\inoutindent=\dimen136
\interspacetitleruled=\dimen137
\interspacealgoruled=\dimen138
\interspacetitleboxruled=\dimen139
\algocf@ruledwidth=\skip72
\algocf@inoutbox=\box57
\algocf@inputbox=\box58
\AlCapSkip=\skip73
\AlCapHSkip=\skip74
\algoskipindent=\skip75
\algocf@nlbox=\box59
\algocf@hangingbox=\box60
\algocf@untilbox=\box61
\algocf@skipuntil=\skip76
\algocf@capbox=\box62
\algoheightruledefault=\skip77
\algoheightrule=\skip78
\algotitleheightruledefault=\skip79
\algotitleheightrule=\skip80
\c@algocfline=\count121
\c@algocfproc=\count122
\c@algocf=\count123
\algocf@algoframe=\box63
\algocf@algobox=\box64
) ("C:\Program Files\MiKTeX 2.9\tex\latex\float\float.sty"
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count124
\float@exts=\toks21
\float@box=\box65
\@float@everytoks=\toks22
\@floatcapt=\box66
)
("C:\Program Files\MiKTeX 2.9\tex\latex\tools\array.sty"
Package: array 2014/10/28 v2.4c Tabular extension package (FMi)
\col@sep=\dimen140
\extrarowheight=\dimen141
\NC@list=\toks23
\extratabsurround=\skip81
\backup@length=\skip82
)
LaTeX Warning: Unused global option(s):
[cleardoublepage=plain].
(tccV-10.aux)
\openout1 = `tccV-10.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 72.
LaTeX Font Info: ... okay on input line 72.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 72.
LaTeX Font Info: ... okay on input line 72.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 72.
LaTeX Font Info: ... okay on input line 72.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 72.
LaTeX Font Info: ... okay on input line 72.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 72.
LaTeX Font Info: ... okay on input line 72.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 72.
LaTeX Font Info: ... okay on input line 72.
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
*geometry* verbose mode - [ preamble ] result:
* driver: pdftex
* paper: a5paper
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes: twoside
* h-part:(L,W,R)=(71.13188pt, 307.28978pt, 42.67912pt)
* v-part:(T,H,B)=(56.9055pt, 497.92325pt, 42.67912pt)
* \paperwidth=421.10078pt
* \paperheight=597.50787pt
* \textwidth=307.28978pt
* \textheight=497.92325pt
* \oddsidemargin=-1.1381pt
* \evensidemargin=-29.59087pt
* \topmargin=-57.42455pt
* \headheight=19.91684pt
* \headsep=22.14322pt
* \topskip=10.0pt
* \footskip=19.91684pt
* \marginparwidth=47.0pt
* \marginparsep=11.0pt
* \columnsep=10.0pt
* \skip\footins=9.0pt plus 4.0pt minus 2.0pt
* \hoffset=0.0pt
* \voffset=0.0pt
* \mag=1000
* \@twocolumnfalse
* \@twosidetrue
* \@mparswitchtrue
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
("C:\Program Files\MiKTeX 2.9\tex\context\base\supp-pdf.mkii"
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count125
\scratchdimen=\dimen142
\scratchbox=\box67
\nofMPsegments=\count126
\nofMParguments=\count127
\everyMPshowfont=\toks24
\MPscratchCnt=\count128
\MPscratchDim=\dimen143
\MPnumerator=\count129
\makeMPintoPDFobject=\count130
\everyMPtoPDFconversion=\toks25
) ("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\pdftexcmds.sty"
Package: pdftexcmds 2016/05/21 v0.22 Utility functions of pdfTeX for LuaTeX (HO
)
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\ifluatex.sty"
Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
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.
)
("C:\Program Files\MiKTeX 2.9\tex\latex\oberdiek\epstopdf-base.sty"
Package: epstopdf-base 2016/05/15 v2.6 Base part for package epstopdf
("C:\Program Files\MiKTeX 2.9\tex\latex\oberdiek\grfext.sty"
Package: grfext 2016/05/16 v1.2 Manage graphics extensions (HO)
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\kvdefinekeys.sty"
Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO)
))
("C:\Program Files\MiKTeX 2.9\tex\latex\oberdiek\kvoptions.sty"
Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO)
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\kvsetkeys.sty"
Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO)
("C:\Program Files\MiKTeX 2.9\tex\generic\oberdiek\etexcmds.sty"
Package: etexcmds 2016/05/16 v1.6 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 epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
38.
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 456.
)
\c@lstlisting=\count131
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <7> on input line 76.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <5> on input line 76.
[0
{C:/ProgramData/MiKTeX/2.9/pdftex/config/pdftex.map}] [0
]
Overfull \hbox (7.39111pt too wide) in paragraph at lines 77--77
\OT1/cmr/m/n/9 rina: Prof. Dr. Car-los Bec-ker Westphall
[]
[1]
Underfull \hbox (badness 10000) in paragraph at lines 77--77
[]
Overfull \hbox (3.33333pt too wide) in paragraph at lines 77--78
[]
[]
[2] [3
] [4] [5
] [6
]
Overfull \hbox (6.54414pt too wide) in paragraph at lines 83--83
[]\OT1/cmr/m/n/10 Cloud com-pu-ting or-ches-tra-tion to-ols such as Apa-che Clo
udS-tack, OpenS-
[]
Overfull \hbox (12.49898pt too wide) in paragraph at lines 83--83
[]\OT1/cmr/bx/n/10 Keywords: \OT1/cmr/m/n/10 Cloud com-pu-ting. Au-to-no-mous m
o-ni-to-ring. Apa-che CloudS-
[]
[7
] [8
] (tccV-10.lof
Overfull \hbox (8.73862pt too wide) in paragraph at lines 12--12
[] \OT1/cmr/m/n/10 Fi-gura []Fluxo de con-fi-gurac~ao da frequ^encia de cap-tu
ra dos servicos
[]
)
\tf@lof=\write3
\openout3 = `tccV-10.lof'.
[9] [10
] (tccV-10.lot)
\tf@lot=\write4
\openout4 = `tccV-10.lot'.
[11] [12
] (tccV-10.las)
\tf@las=\write5
\openout5 = `tccV-10.las'.
[13] [14
] (tccV-10.toc
Overfull \hbox (12.17865pt too wide) in paragraph at lines 16--16
[][] []\OT1/cmr/m/n/10 ORQUESTRA[][]AO DE AM-BI-EN-TES DE COMPUTA[][]AO
[]
Overfull \hbox (21.48424pt too wide) in paragraph at lines 18--18
[][] []\OT1/cmr/m/n/10 MONITORAMENTO DE AM-BI-EN-TES DE COMPUTA[][]AO
[]
[15])
\tf@toc=\write6
\openout6 = `tccV-10.toc'.
[16]
Cap\'{\i }tulo 1.
LaTeX Font Info: Try loading font information for OMS+cmr on input line 100.
("C:\Program Files\MiKTeX 2.9\tex\latex\base\omscmr.fd"
File: omscmr.fd 2014/09/29 v2.5h Standard LaTeX font definitions
)
LaTeX Font Info: Font shape `OMS/cmr/m/n' in size <10> not available
(Font) Font shape `OMS/cmsy/m/n' tried instead on input line 100.
[17
]
Underfull \vbox (badness 10000) has occurred while \output is active []
[18]
[19]
Underfull \vbox (badness 10000) has occurred while \output is active []
[20]
Overfull \hbox (2.1274pt too wide) in paragraph at lines 151--152
\OT1/cmr/m/n/10 de um am-bi-ente de nu-vem que forneca in-fra-es-tru-tura como
servico;
[]
[21] [22]
Cap\'{\i }tulo 2.
[23
] [24] [25] [26]
Underfull \vbox (badness 10000) has occurred while \output is active []
[27]
Overfull \hbox (2.51988pt too wide) in paragraph at lines 255--256
\OT1/cmr/m/n/10 gra-tuito de codigo aberto su-por-tado pela Ca-no-ni-cal (\OT1
/cmr/m/n/8 CA-NO-NI-CAL\OT1/cmr/m/n/10 , 2015).
[]
Overfull \hbox (1.3307pt too wide) in paragraph at lines 257--258
[]\OT1/cmr/m/n/10 VirtualBox (\OT1/cmr/m/n/8 ORA-CLE.\OT1/cmr/m/n/10 , 2015c)
e um vir-tu-a-li-za-dor de codigo aberto
[]
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <9> on input line 274.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <6> on input line 274.
[28]
Overfull \hbox (25.81454pt too wide) in paragraph at lines 303--310
[][]
[]
[29] [30]
Overfull \hbox (0.74158pt too wide) in paragraph at lines 343--344
\OT1/cmr/m/n/10 ficac~oes sig-ni-fi-ca-ti-vas neste (\OT1/cmr/m/n/8 KAT-SA-ROS
; KU-BERT; GAL-LIZO\OT1/cmr/m/n/10 , 2011);
[]
Overfull \hbox (5.29419pt too wide) in paragraph at lines 344--345
[]\OT1/cmr/m/n/10 Confiabilidade: uma fer-ra-menta de mo-ni-to-ra-mento e dita
confiavel,
[]
[31] [32] [33]
LaTeX Warning: `h' float specifier changed to `ht'.
Overfull \hbox (3.38576pt too wide) in paragraph at lines 418--419
[]\OT1/cmr/m/n/10 Dentre as fer-ra-men-tas ana-li-sa-das, to-das su-por-tam mo-
ni-to-ra-mento
[]
[34]
Underfull \vbox (badness 10000) has occurred while \output is active []
[35]
[36]
Cap\'{\i }tulo 3.
[37
]
Underfull \vbox (badness 10000) has occurred while \output is active []
[38]
LaTeX Warning: No positions in optional float specifier.
Default added (so using `tbp') on input line 457.
Underfull \vbox (badness 10000) has occurred while \output is active []
[39]
[40]
Cap\'{\i }tulo 4.
[41
] <figuras/ferramentaOrquestracao.png, id=145, 199.24437pt x 104.39pt>
File: figuras/ferramentaOrquestracao.png Graphic file (type png)
<use figuras/ferramentaOrquestracao.png>
Package pdftex.def Info: figuras/ferramentaOrquestracao.png used on input line
504.
(pdftex.def) Requested size: 199.24388pt x 104.38972pt.
[42 <./figuras/ferramentaOrquestracao.png>] <figuras/ambienteComPlataforma.png
, id=151, 186.19562pt x 240.9pt>
File: figuras/ambienteComPlataforma.png Graphic file (type png)
<use figuras/ambienteComPlataforma.png>
Package pdftex.def Info: figuras/ambienteComPlataforma.png used on input line 5
31.
(pdftex.def) Requested size: 186.19516pt x 240.8994pt.
<figuras/componenteMonitoramento.png, id=152, 192.21812pt x 152.57pt>
File: figuras/componenteMonitoramento.png Graphic file (type png)
<use figuras/componenteMonitoramento.png>
Package pdftex.def Info: figuras/componenteMonitoramento.png used on input line
540.
(pdftex.def) Requested size: 192.21764pt x 152.56963pt.
Underfull \vbox (badness 10000) has occurred while \output is active []
[43 <./figuras/ambienteComPlataforma.png>]
<figuras/json1.png, id=157, 396.48125pt x 78.2925pt>
File: figuras/json1.png Graphic file (type png)
<use figuras/json1.png>
Package pdftex.def Info: figuras/json1.png used on input line 561.
(pdftex.def) Requested size: 317.18542pt x 62.63406pt.
Overfull \hbox (9.89565pt too wide) in paragraph at lines 561--563
[][]
[]
Underfull \vbox (badness 4872) has occurred while \output is active []
[44 <./figuras/componenteMonitoramento.png>]
<figuras/json2.png, id=162, 394.97563pt x 73.77562pt>
File: figuras/json2.png Graphic file (type png)
<use figuras/json2.png>
Package pdftex.def Info: figuras/json2.png used on input line 570.
(pdftex.def) Requested size: 315.98093pt x 59.02055pt.
Overfull \hbox (8.69115pt too wide) in paragraph at lines 570--572
[][]
[]
[45 <./figuras/json1.png> <./figuras/json2.png>]
<figuras/servicoCaptura.png, id=168, 174.15062pt x 91.34125pt>
File: figuras/servicoCaptura.png Graphic file (type png)
<use figuras/servicoCaptura.png>
Package pdftex.def Info: figuras/servicoCaptura.png used on input line 594.
(pdftex.def) Requested size: 174.15019pt x 91.34102pt.
Overfull \hbox (9.94128pt too wide) in paragraph at lines 601--602
[]\OT1/cmr/m/n/10 Ocomponente de ar-ma-ze-na-mento sera cons-titudo de uma a
plicac~ao
[]
[46 <./figuras/servicoCaptura.png>]
Overfull \hbox (13.69125pt too wide) in paragraph at lines 603--605
[]\OT1/cmr/m/n/10 Ambientes de com-putac~ao em nu-vem pos-suem mi-lha-res de m
aquinas
[]
<figuras/armazenamento.png, id=173, 135.00438pt x 95.85812pt>
File: figuras/armazenamento.png Graphic file (type png)
<use figuras/armazenamento.png>
Package pdftex.def Info: figuras/armazenamento.png used on input line 620.
(pdftex.def) Requested size: 135.00403pt x 95.85788pt.
LaTeX Warning: `h' float specifier changed to `ht'.
<figuras/modeloRelacional.png, id=174, 398.99063pt x 262.9825pt>
File: figuras/modeloRelacional.png Graphic file (type png)
<use figuras/modeloRelacional.png>
Package pdftex.def Info: figuras/modeloRelacional.png used on input line 628.
(pdftex.def) Requested size: 359.08824pt x 236.68205pt.
Overfull \hbox (51.79846pt too wide) in paragraph at lines 628--630
[][]
[]
LaTeX Warning: `h' float specifier changed to `ht'.
<figuras/componenteConfiguracao.png, id=175, 110.4125pt x 73.77562pt>
File: figuras/componenteConfiguracao.png Graphic file (type png)
<use figuras/componenteConfiguracao.png>
Package pdftex.def Info: figuras/componenteConfiguracao.png used on input line
640.
(pdftex.def) Requested size: 110.41222pt x 73.77542pt.
[47]
LaTeX Warning: `h' float specifier changed to `ht'.
[48 <./figuras/armazenamento.png>] [49 <./figuras/modeloRelacional.png>]
Overfull \hbox (2.46078pt too wide) in paragraph at lines 664--665
\OT1/cmr/m/n/10 dos va-lo-res de cada tipo de metrica co-le-tada num pas-sado
proximo;
[]
Overfull \hbox (1.05739pt too wide) in paragraph at lines 669--670
[]\OT1/cmr/bx/n/10 frequ^enciaInicial\OT1/cmr/m/n/10 ()[Linha: 13] - metodo qu
e re-torna a frequ^encia
[]
Overfull \hbox (8.23262pt too wide) in paragraph at lines 670--671
[]\OT1/cmr/bx/n/10 nMetricas\OT1/cmr/m/n/10 ()[Linha: 12] - metodo que re-torn
a o numero de metricas
[]
<figuras/algoritmo1.png, id=188, 574.145pt x 383.93437pt>
File: figuras/algoritmo1.png Graphic file (type png)
<use figuras/algoritmo1.png>
Package pdftex.def Info: figuras/algoritmo1.png used on input line 676.
(pdftex.def) Requested size: 344.48965pt x 230.3624pt.
Overfull \hbox (10.96935pt too wide) in paragraph at lines 675--678
| []
[]
[50 <./figuras/componenteConfiguracao.png>]
Overfull \hbox (1.02455pt too wide) in paragraph at lines 680--682
[]\OT1/cmr/m/n/10 Para re-a-li-zar o ajuste da frequ^encia fo-ram de-fi-ni-das
tr^es Formulas
[]
<figuras/formula1.png, id=193, 511.9125pt x 53.70062pt>
File: figuras/formula1.png Graphic file (type png)
<use figuras/formula1.png>
Package pdftex.def Info: figuras/formula1.png used on input line 700.
(pdftex.def) Requested size: 307.14987pt x 32.22061pt.
Overfull \hbox (2.0823pt too wide) in paragraph at lines 699--702
| []
[]
[51 <./figuras/algoritmo1.png>]
<figuras/formula3.png, id=198, 453.19313pt x 39.14626pt>
File: figuras/formula3.png Graphic file (type png)
<use figuras/formula3.png>
Package pdftex.def Info: figuras/formula3.png used on input line 713.
(pdftex.def) Requested size: 271.91797pt x 23.48792pt.
Overfull \hbox (0.99362pt too wide) in paragraph at lines 712--715
| []
[]
<figuras/formula2.png, id=199, 523.9575pt x 38.1425pt>
File: figuras/formula2.png Graphic file (type png)
<use figuras/formula2.png>
Package pdftex.def Info: figuras/formula2.png used on input line 731.
(pdftex.def) Requested size: 314.37692pt x 22.88567pt.
Overfull \hbox (0.77345pt too wide) in paragraph at lines 730--733
| []
[]
[52 <./figuras/formula1.png> <./figuras/formula3.png> <./figuras/formula2.png>]
Underfull \vbox (badness 10000) has occurred while \output is active []
[53]
Overfull \hbox (1.73854pt too wide) in paragraph at lines 745--746
\OT1/cmr/m/n/10 apro-vei-tar ao maximo a ca-pa-ci-dade de pro-ces-sa-mento de
ou-tros servicos,
[]
[54]
Overfull \hbox (2.01625pt too wide) in paragraph at lines 768--770
\OT1/cmr/m/n/10 sado por par^ametro e que es-teja den-tro da lista de servicos
tambem
[]
[55] <figuras/algoritmo2.png, id=216, 323.70938pt x 529.98pt>
File: figuras/algoritmo2.png Graphic file (type png)
<use figuras/algoritmo2.png>
Package pdftex.def Info: figuras/algoritmo2.png used on input line 785.
(pdftex.def) Requested size: 323.70859pt x 529.97868pt.
Underfull \vbox (badness 10000) has occurred while \output is active []
[56]
Overfull \vbox (32.05544pt too high) has occurred while \output is active []
[57 <./figuras/algoritmo2.png>]
<figuras/fluxoCaptura.png, id=224, 398.48875pt x 115.43124pt>
File: figuras/fluxoCaptura.png Graphic file (type png)
<use figuras/fluxoCaptura.png>
Package pdftex.def Info: figuras/fluxoCaptura.png used on input line 808.
(pdftex.def) Requested size: 278.94022pt x 80.80132pt.
[58 <./figuras/fluxoCaptura.png>]
<figuras/fluxoConf.png, id=229, 395.4775pt x 143.53625pt>
File: figuras/fluxoConf.png Graphic file (type png)
<use figuras/fluxoConf.png>
Package pdftex.def Info: figuras/fluxoConf.png used on input line 817.
(pdftex.def) Requested size: 276.83235pt x 100.47467pt.
[59 <./figuras/fluxoConf.png>]
<figuras/fluxoPersist.png, id=235, 302.63063pt x 143.03438pt>
File: figuras/fluxoPersist.png Graphic file (type png)
<use figuras/fluxoPersist.png>
Package pdftex.def Info: figuras/fluxoPersist.png used on input line 839.
(pdftex.def) Requested size: 302.62988pt x 143.03401pt.
[60 <./figuras/fluxoPersist.png>]
Cap\'{\i }tulo 5.
Underfull \vbox (badness 10000) has occurred while \output is active []
[61
]
<figuras/hierarquia.png, id=243, 451.6875pt x 379.4175pt>
File: figuras/hierarquia.png Graphic file (type png)
<use figuras/hierarquia.png>
Package pdftex.def Info: figuras/hierarquia.png used on input line 860.
(pdftex.def) Requested size: 383.93617pt x 322.5064pt.
Overfull \hbox (50.41586pt too wide) in paragraph at lines 859--862
[]| []
[]
[62 <./figuras/hierarquia.png>]
Overfull \hbox (7.70317pt too wide) in paragraph at lines 888--889
\OT1/cmr/m/it/10 Cloud-To-De-ployAu-to-no-mic-cs-Sys-temVm \OT1/cmr/m/n/10 da \
OT1/cmr/m/it/10 clas-se-Au-to-no-mic-cs-Sys-temVm-
[]
[63] <figuras/criacaoSystemVMs.png, id=251, 294.09875pt x 135.50626pt>
File: figuras/criacaoSystemVMs.png Graphic file (type png)
<use figuras/criacaoSystemVMs.png>
Package pdftex.def Info: figuras/criacaoSystemVMs.png used on input line 894.
(pdftex.def) Requested size: 294.09802pt x 135.5059pt.
[64 <./figuras/criacaoSystemVMs.png>]
<figuras/verificacaoVMArmazenamento.png, id=256, 340.27126pt x 142.5325pt>
File: figuras/verificacaoVMArmazenamento.png Graphic file (type png)
<use figuras/verificacaoVMArmazenamento.png>
Package pdftex.def Info: figuras/verificacaoVMArmazenamento.png used on input l
ine 904.
(pdftex.def) Requested size: 289.23192pt x 121.15318pt.
<figuras/verificacaoVMcoleta.png, id=257, 364.86313pt x 133.49875pt>
File: figuras/verificacaoVMcoleta.png Graphic file (type png)
<use figuras/verificacaoVMcoleta.png>
Package pdftex.def Info: figuras/verificacaoVMcoleta.png used on input line 915
.
(pdftex.def) Requested size: 328.37376pt x 120.14774pt.
Overfull \hbox (21.08398pt too wide) in paragraph at lines 915--917
[][]
[]
Underfull \vbox (badness 10000) has occurred while \output is active []
[65 <./figuras/verificacaoVMArmazenamento.png>]
Overfull \hbox (5.3661pt too wide) in paragraph at lines 926--927
\OT1/cmr/m/n/10 im-ple-men-ta-dos pela classe \OT1/cmr/m/it/10 Da-ta-Col-lec-to
r-Con-fi-gu-ra-ti-o-nA-gent-Ser-vice \OT1/cmr/m/n/10 para
[]
<figuras/ajustarFrequenciaCaptura.png, id=263, 383.4325pt x 226.8475pt>
File: figuras/ajustarFrequenciaCaptura.png Graphic file (type png)
<use figuras/ajustarFrequenciaCaptura.png>
Package pdftex.def Info: figuras/ajustarFrequenciaCaptura.png used on input lin
e 930.
(pdftex.def) Requested size: 345.08606pt x 204.16086pt.
Overfull \hbox (37.79628pt too wide) in paragraph at lines 930--932
[][]
[]
Underfull \vbox (badness 10000) has occurred while \output is active []
[66 <./figuras/verificacaoVMcoleta.png>]
Overfull \hbox (0.34315pt too wide) in paragraph at lines 943--944
[]\OT1/cmr/m/n/10 A classe \OT1/cmr/m/it/10 Host-Dis-tri-bu-ti-o-nA-gent \OT1/c
mr/m/n/10 usa uma inst^ancia da classe \OT1/cmr/m/it/10 Host-
[]
<figuras/ajustarServidores.png, id=268, 383.93437pt x 197.23688pt>
File: figuras/ajustarServidores.png Graphic file (type png)
<use figuras/ajustarServidores.png>
Package pdftex.def Info: figuras/ajustarServidores.png used on input line 947.
(pdftex.def) Requested size: 345.53773pt x 177.51152pt.
Overfull \hbox (38.24796pt too wide) in paragraph at lines 947--949
[][]
[]
Underfull \vbox (badness 10000) has occurred while \output is active []
[67 <./figuras/ajustarFrequenciaCaptura.png>]
Overfull \hbox (4.19087pt too wide) in paragraph at lines 958--960
[]\OT1/cmr/m/n/10 A classe \OT1/cmr/m/it/10 Cap-tu-re-Ser-vice \OT1/cmr/m/n/10
tambem im-ple-menta a in-ter-face do Spring
[]
<figuras/capturaDados.png, id=273, 367.3725pt x 174.6525pt>
File: figuras/capturaDados.png Graphic file (type png)
<use figuras/capturaDados.png>
Package pdftex.def Info: figuras/capturaDados.png used on input line 963.
(pdftex.def) Requested size: 330.63217pt x 157.18579pt.
Overfull \hbox (23.34239pt too wide) in paragraph at lines 963--965
[][]
[]
Underfull \vbox (badness 10000) has occurred while \output is active []
[68 <./figuras/ajustarServidores.png>] [69 <./figuras/capturaDados.png>] [70
]
Cap\'{\i }tulo 6.
[71] (tccV-10.bbl [72]
Overfull \hbox (55.93324pt too wide) in paragraph at lines 83--87
\OML/cmm/m/it/10 <$\OT1/cmr/m/n/10 http://www.intel.com/content/dam/www/public/
us/en/documents/manuals/64-