main.log 56.3 KB
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700
This is pdfTeX, Version 3.141592653-2.6-1.40.25 (TeX Live 2023) (preloaded format=pdflatex 2023.5.31)  12 MAR 2025 10:20
entering extended mode
 restricted \write18 enabled.
 %&-line parsing enabled.
**main.tex
(./main.tex
LaTeX2e <2022-11-01> patch level 1
L3 programming layer <2023-05-22> (./spimufcphdthesis.cls
Document Class: spimufcphdthesis 2022/02/10

(/usr/local/texlive/2023/texmf-dist/tex/latex/upmethodology/upmethodology-docum
ent.cls
Document Class: upmethodology-document 2022/10/04

(/usr/local/texlive/2023/texmf-dist/tex/latex/upmethodology/upmethodology-p-com
mon.sty
Package: upmethodology-p-common 2022/02/10
 (/usr/local/texlive/2023/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2022/04/13 v1.1d Standard LaTeX ifthen package (DPC)
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/tools/xspace.sty
Package: xspace 2014/10/28 v1.13 Space after command names (DPC,MH)
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/xcolor/xcolor.sty
Package: xcolor 2022/06/12 v2.14 LaTeX color extensions (UK)

(/usr/local/texlive/2023/texmf-dist/tex/latex/graphics-cfg/color.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package xcolor Info: Driver file: pdftex.def on input line 227.

(/usr/local/texlive/2023/texmf-dist/tex/latex/graphics-def/pdftex.def
File: pdftex.def 2022/09/22 v1.2b Graphics/color driver for pdftex
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/graphics/mathcolor.ltx)
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1353.
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1357.
Package xcolor Info: Model `RGB' extended on input line 1369.
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1371.
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1372.
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1373.
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1374.
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1375.
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1376.
)
(/usr/local/texlive/2023/texmf-dist/tex/generic/iftex/ifpdf.sty
Package: ifpdf 2019/10/25 v3.4 ifpdf legacy package. Use iftex instead.

(/usr/local/texlive/2023/texmf-dist/tex/generic/iftex/iftex.sty
Package: iftex 2022/02/03 v1.0f TeX engine tests
))
(/usr/local/texlive/2023/texmf-dist/tex/latex/upmethodology/UPMVERSION.def))
*********** UPMETHODOLOGY BOOK CLASS (WITH PART AND CHAPTER)
(/usr/local/texlive/2023/texmf-dist/tex/latex/base/book.cls
Document Class: book 2022/07/02 v1.4n Standard LaTeX document class
(/usr/local/texlive/2023/texmf-dist/tex/latex/base/bk11.clo
File: bk11.clo 2022/07/02 v1.4n Standard LaTeX file (size option)
)
\c@part=\count185
\c@chapter=\count186
\c@section=\count187
\c@subsection=\count188
\c@subsubsection=\count189
\c@paragraph=\count190
\c@subparagraph=\count191
\c@figure=\count192
\c@table=\count193
\abovecaptionskip=\skip48
\belowcaptionskip=\skip49
\bibindent=\dimen140
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/a4wide/a4wide.sty
Package: a4wide 1994/08/30

(/usr/local/texlive/2023/texmf-dist/tex/latex/ntgclass/a4.sty
Package: a4 2023/01/10 v1.2g A4 based page layout
))
(/usr/local/texlive/2023/texmf-dist/tex/latex/upmethodology/upmethodology-docum
ent.sty
Package: upmethodology-document 2022/02/10
 **** upmethodology-document is using French language ****
(/usr/local/texlive/2023/texmf-dist/tex/generic/babel/babel.sty
Package: babel 2023/05/11 v3.89 The Babel package
\babel@savecnt=\count194
\U@D=\dimen141
\l@unhyphenated=\language87

(/usr/local/texlive/2023/texmf-dist/tex/generic/babel/txtbabel.def)
\bbl@readstream=\read2
\bbl@dirlevel=\count195
Package babel Info: Main language set with 'main='. Except if you have
(babel)             problems, prefer the default mechanism for setting
(babel)             the main language, ie, as the last declared.
(babel)             Reported on input line 4170.

(/usr/local/texlive/2023/texmf-dist/tex/generic/babel-french/french.ldf
Language: french 2023/03/08 v3.5q French support from the babel system
Package babel Info: Hyphen rules for 'acadian' set to \l@french
(babel)             (\language29). Reported on input line 91.
Package babel Info: Hyphen rules for 'canadien' set to \l@french
(babel)             (\language29). Reported on input line 92.
\FB@nonchar=\count196
Package babel Info: Making : an active character on input line 395.
Package babel Info: Making ; an active character on input line 396.
Package babel Info: Making ! an active character on input line 397.
Package babel Info: Making ? an active character on input line 398.
\FBguill@level=\count197
\FBold@everypar=\toks16
\FB@Mht=\dimen142
\mc@charclass=\count198
\mc@charfam=\count199
\mc@charslot=\count266
\std@mcc=\count267
\dec@mcc=\count268
\FB@parskip=\dimen143
\listindentFB=\dimen144
\descindentFB=\dimen145
\labelindentFB=\dimen146
\labelwidthFB=\dimen147
\leftmarginFB=\dimen148
\parindentFFN=\dimen149
\FBfnindent=\dimen150
))
(/usr/local/texlive/2023/texmf-dist/tex/generic/babel/locale/fr/babel-french.te
x
Package babel Info: Importing font and identification data for french
(babel)             from babel-fr.ini. Reported on input line 11.
) (/usr/local/texlive/2023/texmf-dist/tex/latex/carlisle/scalefnt.sty)
(/usr/local/texlive/2023/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
\KV@toks@=\toks17
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/vmargin/vmargin.sty
Package: vmargin 2004/07/15 V2.5 set document margins (VK)

Package: vmargin 2004/07/15 V2.5 set document margins (VK)
\PaperWidth=\dimen151
\PaperHeight=\dimen152
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/upmethodology/upmethodology-exten
sion.sty
Package: upmethodology-extension 2022/02/10
\upmext@tmp@putx=\skip50
 *** define the extension value frontillustrationsize ****
*** define the extension value watermarksize ****
*** undefine the extension value publisher ****
*** undefine the extension value copyrighter ****
*** undefine the extension value printedin ****)
(/usr/local/texlive/2023/texmf-dist/tex/latex/upmethodology/upmethodology-fmt.s
ty
Package: upmethodology-fmt 2022/10/04
 **** upmethodology-fmt is using French language ****
(/usr/local/texlive/2023/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR)

(/usr/local/texlive/2023/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR)

(/usr/local/texlive/2023/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2021/08/11 v1.11 sin cos tan (DPC)
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: pdftex.def on input line 107.
)
\Gin@req@height=\dimen153
\Gin@req@width=\dimen154
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/caption/subcaption.sty
Package: subcaption 2023/02/19 v1.6 Sub-captions (AR)

(/usr/local/texlive/2023/texmf-dist/tex/latex/caption/caption.sty
Package: caption 2023/03/12 v3.6j Customizing captions (AR)

(/usr/local/texlive/2023/texmf-dist/tex/latex/caption/caption3.sty
Package: caption3 2023/03/12 v2.4 caption3 kernel (AR)
\caption@tempdima=\dimen155
\captionmargin=\dimen156
\caption@leftmargin=\dimen157
\caption@rightmargin=\dimen158
\caption@width=\dimen159
\caption@indent=\dimen160
\caption@parindent=\dimen161
\caption@hangindent=\dimen162
Package caption Info: Standard document class detected.
Package caption Info: french babel package is loaded.
)
\c@caption@flags=\count269
\c@continuedfloat=\count270
)
Package caption Info: New subtype `subfigure' on input line 239.
\c@subfigure=\count271
Package caption Info: New subtype `subtable' on input line 239.
\c@subtable=\count272
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/tools/tabularx.sty
Package: tabularx 2020/01/15 v2.11c `tabularx' package (DPC)

(/usr/local/texlive/2023/texmf-dist/tex/latex/tools/array.sty
Package: array 2022/09/04 v2.5g Tabular extension package (FMi)
\col@sep=\dimen163
\ar@mcellbox=\box51
\extrarowheight=\dimen164
\NC@list=\toks18
\extratabsurround=\skip51
\backup@length=\skip52
\ar@cellbox=\box52
)
\TX@col@width=\dimen165
\TX@old@table=\dimen166
\TX@old@col=\dimen167
\TX@target=\dimen168
\TX@delta=\dimen169
\TX@cols=\count273
\TX@ftn=\toks19
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/tools/multicol.sty
Package: multicol 2021/11/30 v1.9d multicolumn formatting (FMi)
\c@tracingmulticols=\count274
\mult@box=\box53
\multicol@leftmargin=\dimen170
\c@unbalance=\count275
\c@collectmore=\count276
\doublecol@number=\count277
\multicoltolerance=\count278
\multicolpretolerance=\count279
\full@width=\dimen171
\page@free=\dimen172
\premulticols=\dimen173
\postmulticols=\dimen174
\multicolsep=\skip53
\multicolbaselineskip=\skip54
\partial@page=\box54
\last@line=\box55
\maxbalancingoverflow=\dimen175
\mult@rightbox=\box56
\mult@grightbox=\box57
\mult@firstbox=\box58
\mult@gfirstbox=\box59
\@tempa=\box60
\@tempa=\box61
\@tempa=\box62
\@tempa=\box63
\@tempa=\box64
\@tempa=\box65
\@tempa=\box66
\@tempa=\box67
\@tempa=\box68
\@tempa=\box69
\@tempa=\box70
\@tempa=\box71
\@tempa=\box72
\@tempa=\box73
\@tempa=\box74
\@tempa=\box75
\@tempa=\box76
\@tempa=\box77
\@tempa=\box78
\@tempa=\box79
\@tempa=\box80
\@tempa=\box81
\@tempa=\box82
\@tempa=\box83
\@tempa=\box84
\@tempa=\box85
\@tempa=\box86
\@tempa=\box87
\@tempa=\box88
\@tempa=\box89
\@tempa=\box90
\@tempa=\box91
\@tempa=\box92
\@tempa=\box93
\@tempa=\box94
\@tempa=\box95
\c@minrows=\count280
\c@columnbadness=\count281
\c@finalcolumnbadness=\count282
\last@try=\dimen176
\multicolovershoot=\dimen177
\multicolundershoot=\dimen178
\mult@nat@firstbox=\box96
\colbreak@box=\box97
\mc@col@check@num=\count283
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/colortbl/colortbl.sty
Package: colortbl 2022/06/20 v1.0f Color table columns (DPC)
\everycr=\toks20
\minrowclearance=\skip55
\rownum=\count284
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/picinpar/picinpar.sty
Pictures in Paragraphs. Version 1.3, November 22, 2022
\br=\count285
\bl=\count286
\na=\count287
\nb=\count288
\tcdsav=\count289
\tcl=\count290
\tcd=\count291
\tcn=\count292
\cumtcl=\count293
\cumpartcl=\count294
\lftside=\dimen179
\rtside=\dimen180
\hpic=\dimen181
\vpic=\dimen182
\strutilg=\dimen183
\picwd=\dimen184
\topheight=\dimen185
\ilg=\dimen186
\lpic=\dimen187
\lwindowsep=\dimen188
\rwindowsep=\dimen189
\cumpar=\dimen190
\twa=\toks21
\la=\toks22
\ra=\toks23
\ha=\toks24
\pictoc=\toks25
\rawtext=\box98
\holder=\box99
\windowbox=\box100
\wartext=\box101
\finaltext=\box102
\aslice=\box103
\bslice=\box104
\wbox=\box105
\wstrutbox=\box106
\picbox=\box107
\waslice=\box108
\wbslice=\box109
\fslice=\box110
) (/usr/local/texlive/2023/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2022/04/08 v2.17n AMS math features
\@mathmargin=\skip56

For additional information on amsmath, use the `?' option.
(/usr/local/texlive/2023/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2021/08/26 v2.01 AMS text

(/usr/local/texlive/2023/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks26
\ex@=\dimen191
))
(/usr/local/texlive/2023/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen192
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2022/04/08 v2.04 operator names
)
\inf@bad=\count295
LaTeX Info: Redefining \frac on input line 234.
\uproot@=\count296
\leftroot@=\count297
LaTeX Info: Redefining \overline on input line 399.
LaTeX Info: Redefining \colon on input line 410.
\classnum@=\count298
\DOTSCASE@=\count299
LaTeX Info: Redefining \ldots on input line 496.
LaTeX Info: Redefining \dots on input line 499.
LaTeX Info: Redefining \cdots on input line 620.
\Mathstrutbox@=\box111
\strutbox@=\box112
LaTeX Info: Redefining \big on input line 722.
LaTeX Info: Redefining \Big on input line 723.
LaTeX Info: Redefining \bigg on input line 724.
LaTeX Info: Redefining \Bigg on input line 725.
\big@size=\dimen193
LaTeX Font Info:    Redeclaring font encoding OML on input line 743.
LaTeX Font Info:    Redeclaring font encoding OMS on input line 744.
\macc@depth=\count300
LaTeX Info: Redefining \bmod on input line 905.
LaTeX Info: Redefining \pmod on input line 910.
LaTeX Info: Redefining \smash on input line 940.
LaTeX Info: Redefining \relbar on input line 970.
LaTeX Info: Redefining \Relbar on input line 971.
\c@MaxMatrixCols=\count301
\dotsspace@=\muskip16
\c@parentequation=\count302
\dspbrk@lvl=\count303
\tag@help=\toks27
\row@=\count304
\column@=\count305
\maxfields@=\count306
\andhelp@=\toks28
\eqnshift@=\dimen194
\alignsep@=\dimen195
\tagshift@=\dimen196
\tagwidth@=\dimen197
\totwidth@=\dimen198
\lineht@=\dimen199
\@envbody=\toks29
\multlinegap=\skip57
\multlinetaggap=\skip58
\mathdisplay@stack=\toks30
LaTeX Info: Redefining \[ on input line 2953.
LaTeX Info: Redefining \] on input line 2954.
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/amscls/amsthm.sty
Package: amsthm 2020/05/29 v2.20.6
\thm@style=\toks31
\thm@bodyfont=\toks32
\thm@headfont=\toks33
\thm@notefont=\toks34
\thm@headpunct=\toks35
\thm@preskip=\skip59
\thm@postskip=\skip60
\thm@headsep=\skip61
\dth@everypar=\toks36
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/thmtools.sty
Package: thmtools 2023/05/04 v0.76
\thmt@toks=\toks37
\c@thmt@dummyctr=\count307

(/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/thm-patch.sty
Package: thm-patch 2023/05/04 v0.76

(/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/parseargs.sty
Package: parseargs 2023/05/04 v0.76
\@parsespec=\toks38
))
(/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/thm-kv.sty
Package: thm-kv 2023/05/04 v0.76
Package thm-kv Info: Theorem names will be uppercased on input line 42.

(/usr/local/texlive/2023/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO)
)
Package thm-kv Info: kvsetkeys patch (v1.16 or later) on input line 158.
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/thm-autoref.sty
Package: thm-autoref 2023/05/04 v0.76

(/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/aliasctr.sty
Package: aliasctr 2023/05/04 v0.76
))
(/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/thm-listof.sty
Package: thm-listof 2023/05/04 v0.76
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/thm-restate.sty
Package: thm-restate 2023/05/04 v0.76
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/thm-amsthm.sty
Package: thm-amsthm 2023/05/04 v0.76
\thmt@style@headstyle=\toks39
))
(/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/pifont.sty
Package: pifont 2020/03/25 PSNFSS-v9.3 Pi font support (SPQR) 
LaTeX Font Info:    Trying to load font information for U+pzd on input line 63.


(/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/upzd.fd
File: upzd.fd 2001/06/04 font definitions for U/pzd.
)
LaTeX Font Info:    Trying to load font information for U+psy on input line 64.


(/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/upsy.fd
File: upsy.fd 2001/06/04 font definitions for U/psy.
))
(/usr/local/texlive/2023/texmf-dist/tex/latex/setspace/setspace.sty
Package: setspace 2022/12/04 v6.7b set line spacing
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/tools/varioref.sty
Package: varioref 2022/01/09 v1.6f package for extended references (FMi)
\c@vrcnt=\count308
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/txfonts.sty
Package: txfonts 2008/01/22 v3.2.1
LaTeX Font Info:    Redeclaring symbol font `operators' on input line 21.
LaTeX Font Info:    Overwriting symbol font `operators' in version `normal'
(Font)                  OT1/cmr/m/n --> OT1/txr/m/n on input line 21.
LaTeX Font Info:    Overwriting symbol font `operators' in version `bold'
(Font)                  OT1/cmr/bx/n --> OT1/txr/m/n on input line 21.
LaTeX Font Info:    Overwriting symbol font `operators' in version `bold'
(Font)                  OT1/txr/m/n --> OT1/txr/bx/n on input line 22.
\symitalic=\mathgroup4
LaTeX Font Info:    Overwriting symbol font `italic' in version `bold'
(Font)                  OT1/txr/m/it --> OT1/txr/bx/it on input line 26.
LaTeX Font Info:    Redeclaring math alphabet \mathbf on input line 29.
LaTeX Font Info:    Overwriting math alphabet `\mathbf' in version `normal'
(Font)                  OT1/cmr/bx/n --> OT1/txr/bx/n on input line 29.
LaTeX Font Info:    Overwriting math alphabet `\mathbf' in version `bold'
(Font)                  OT1/cmr/bx/n --> OT1/txr/bx/n on input line 29.
LaTeX Font Info:    Redeclaring math alphabet \mathit on input line 30.
LaTeX Font Info:    Overwriting math alphabet `\mathit' in version `normal'
(Font)                  OT1/cmr/m/it --> OT1/txr/m/it on input line 30.
LaTeX Font Info:    Overwriting math alphabet `\mathit' in version `bold'
(Font)                  OT1/cmr/bx/it --> OT1/txr/m/it on input line 30.
LaTeX Font Info:    Overwriting math alphabet `\mathit' in version `bold'
(Font)                  OT1/txr/m/it --> OT1/txr/bx/it on input line 31.
LaTeX Font Info:    Redeclaring math alphabet \mathsf on input line 40.
LaTeX Font Info:    Overwriting math alphabet `\mathsf' in version `normal'
(Font)                  OT1/cmss/m/n --> OT1/txss/m/n on input line 40.
LaTeX Font Info:    Overwriting math alphabet `\mathsf' in version `bold'
(Font)                  OT1/cmss/bx/n --> OT1/txss/m/n on input line 40.
LaTeX Font Info:    Overwriting math alphabet `\mathsf' in version `bold'
(Font)                  OT1/txss/m/n --> OT1/txss/b/n on input line 41.
LaTeX Font Info:    Redeclaring math alphabet \mathtt on input line 50.
LaTeX Font Info:    Overwriting math alphabet `\mathtt' in version `normal'
(Font)                  OT1/cmtt/m/n --> OT1/txtt/m/n on input line 50.
LaTeX Font Info:    Overwriting math alphabet `\mathtt' in version `bold'
(Font)                  OT1/cmtt/m/n --> OT1/txtt/m/n on input line 50.
LaTeX Font Info:    Overwriting math alphabet `\mathtt' in version `bold'
(Font)                  OT1/txtt/m/n --> OT1/txtt/b/n on input line 51.
LaTeX Font Info:    Redeclaring symbol font `letters' on input line 58.
LaTeX Font Info:    Overwriting symbol font `letters' in version `normal'
(Font)                  OML/cmm/m/it --> OML/txmi/m/it on input line 58.
LaTeX Font Info:    Overwriting symbol font `letters' in version `bold'
(Font)                  OML/cmm/b/it --> OML/txmi/m/it on input line 58.
LaTeX Font Info:    Overwriting symbol font `letters' in version `bold'
(Font)                  OML/txmi/m/it --> OML/txmi/bx/it on input line 59.
\symlettersA=\mathgroup5
LaTeX Font Info:    Overwriting symbol font `lettersA' in version `bold'
(Font)                  U/txmia/m/it --> U/txmia/bx/it on input line 67.
LaTeX Font Info:    Redeclaring symbol font `symbols' on input line 77.
LaTeX Font Info:    Overwriting symbol font `symbols' in version `normal'
(Font)                  OMS/cmsy/m/n --> OMS/txsy/m/n on input line 77.
LaTeX Font Info:    Overwriting symbol font `symbols' in version `bold'
(Font)                  OMS/cmsy/b/n --> OMS/txsy/m/n on input line 77.
LaTeX Font Info:    Overwriting symbol font `symbols' in version `bold'
(Font)                  OMS/txsy/m/n --> OMS/txsy/bx/n on input line 78.
\symAMSa=\mathgroup6
LaTeX Font Info:    Overwriting symbol font `AMSa' in version `bold'
(Font)                  U/txsya/m/n --> U/txsya/bx/n on input line 94.
\symAMSb=\mathgroup7
LaTeX Font Info:    Overwriting symbol font `AMSb' in version `bold'
(Font)                  U/txsyb/m/n --> U/txsyb/bx/n on input line 103.
\symsymbolsC=\mathgroup8
LaTeX Font Info:    Overwriting symbol font `symbolsC' in version `bold'
(Font)                  U/txsyc/m/n --> U/txsyc/bx/n on input line 113.
LaTeX Font Info:    Redeclaring symbol font `largesymbols' on input line 120.
LaTeX Font Info:    Overwriting symbol font `largesymbols' in version `normal'
(Font)                  OMX/cmex/m/n --> OMX/txex/m/n on input line 120.
LaTeX Font Info:    Overwriting symbol font `largesymbols' in version `bold'
(Font)                  OMX/cmex/m/n --> OMX/txex/m/n on input line 120.
LaTeX Font Info:    Overwriting symbol font `largesymbols' in version `bold'
(Font)                  OMX/txex/m/n --> OMX/txex/bx/n on input line 121.
\symlargesymbolsA=\mathgroup9
LaTeX Font Info:    Overwriting symbol font `largesymbolsA' in version `bold'
(Font)                  U/txexa/m/n --> U/txexa/bx/n on input line 129.
LaTeX Font Info:    Redeclaring math symbol \mathsterling on input line 164.
LaTeX Font Info:    Redeclaring math symbol \hbar on input line 591.
LaTeX Info: Redefining \not on input line 1043.
LaTeX Info: Redefining \textsquare on input line 1063.
LaTeX Info: Redefining \openbox on input line 1064.
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/relsize/relsize.sty
Package: relsize 2013/03/29 ver 4.1
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/xkeyval/xkeyval.sty
Package: xkeyval 2022/06/16 v2.9 package option processing (HA)

(/usr/local/texlive/2023/texmf-dist/tex/generic/xkeyval/xkeyval.tex
(/usr/local/texlive/2023/texmf-dist/tex/generic/xkeyval/xkvutils.tex
\XKV@toks=\toks40
\XKV@tempa@toks=\toks41
)
\XKV@depth=\count309
File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
))
(/usr/local/texlive/2023/texmf-dist/tex/latex/hyphenat/hyphenat.sty
Package: hyphenat 2009/09/02 v2.3c hyphenation utilities
\langwohyphens=\language88
LaTeX Info: Redefining \_ on input line 43.
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/bbm-macros/bbm.sty
Package: bbm 1999/03/15 V 1.2 provides fonts for set symbols - TH
LaTeX Font Info:    Overwriting math alphabet `\mathbbm' in version `bold'
(Font)                  U/bbm/m/n --> U/bbm/bx/n on input line 33.
LaTeX Font Info:    Overwriting math alphabet `\mathbbmss' in version `bold'
(Font)                  U/bbmss/m/n --> U/bbmss/bx/n on input line 35.
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/environ/environ.sty
Package: environ 2014/05/04 v0.3 A new way to define environments

(/usr/local/texlive/2023/texmf-dist/tex/latex/trimspaces/trimspaces.sty
Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list
))
\c@upm@subfigure@count=\count310
\c@upm@fmt@mtabular@columnnumber=\count311
\c@upm@format@section@sectionlevel=\count312
\c@upm@fmt@savedcounter=\count313
\c@@@upm@fmt@inlineenumeration=\count314
\c@@upm@fmt@enumdescription@cnt@=\count315
\upm@framed@minipage=\box113
\upm@highlight@box@save=\box114
\c@upmdefinition=\count316
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/upmethodology/upmethodology-versi
on.sty
Package: upmethodology-version 2022/02/10
 **** upmethodology-version is using French language ****
\upm@tmp@a=\count317
)
\listendskip=\skip62
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/upmethodology/upmethodology-front
page.sty
Package: upmethodology-frontpage 2022/02/10
 **** upmethodology-frontpage is using French language ****
\upm@front@tmpa=\dimen256
\upm@front@tmpb=\dimen257

*** define the extension value frontillustrationsize ****)
(/usr/local/texlive/2023/texmf-dist/tex/latex/upmethodology/upmethodology-backp
age.sty
Package: upmethodology-backpage 2022/02/10
 **** upmethodology-backpage is using French language ****)
(/usr/local/texlive/2023/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip17
Package: url 2013/09/16  ver 3.4  Verb mode for urls, etc.
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2023-05-16 v7.00y Hypertext links for LaTeX

(/usr/local/texlive/2023/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
)
(/usr/local/texlive/2023/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
)

(/usr/local/texlive/2023/texmf-dist/tex/generic/infwarerr/infwarerr.sty
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
)
(/usr/local/texlive/2023/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
)
(/usr/local/texlive/2023/texmf-dist/tex/generic/pdfescape/pdfescape.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/hycolor/hycolor.sty
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/auxhook/auxhook.sty
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2023-05-16 v2.51 Cross-referencing by name of section

(/usr/local/texlive/2023/texmf-dist/tex/latex/refcount/refcount.sty
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
)
(/usr/local/texlive/2023/texmf-dist/tex/generic/gettitlestring/gettitlestring.s
ty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
 (/usr/local/texlive/2023/texmf-dist/tex/latex/kvoptions/kvoptions.sty
Package: kvoptions 2022-06-15 v3.15 Key value format for package options (HO)
))
\c@section@level=\count318
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/etoolbox/etoolbox.sty
Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count319
)
\@linkdim=\dimen258
\Hy@linkcounter=\count320
\Hy@pagecounter=\count321

(/usr/local/texlive/2023/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2023-05-16 v7.00y Hyperref: PDFDocEncoding definition (HO)
Now handling font encoding PD1 ...
... no UTF-8 mapping file for font encoding PD1
)
(/usr/local/texlive/2023/texmf-dist/tex/generic/intcalc/intcalc.sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
\Hy@SavedSpaceFactor=\count322

(/usr/local/texlive/2023/texmf-dist/tex/latex/hyperref/puenc.def
File: puenc.def 2023-05-16 v7.00y Hyperref: PDF Unicode definition (HO)
Now handling font encoding PU ...
... no UTF-8 mapping file for font encoding PU
)
Package hyperref Info: Option `breaklinks' set `true' on input line 4050.
Package hyperref Info: Option `pageanchor' set `true' on input line 4050.
Package hyperref Info: Option `bookmarks' set `false' on input line 4050.
Package hyperref Info: Option `hyperfigures' set `true' on input line 4050.
Package hyperref Info: Option `hyperindex' set `true' on input line 4050.
Package hyperref Info: Option `linktocpage' set `true' on input line 4050.
Package hyperref Info: Option `bookmarks' set `true' on input line 4050.
Package hyperref Info: Option `bookmarksopen' set `true' on input line 4050.
Package hyperref Info: Option `bookmarksnumbered' set `true' on input line 4050
.
Package hyperref Info: Option `colorlinks' set `false' on input line 4050.
Package hyperref Info: Hyper figures ON on input line 4165.
Package hyperref Info: Link nesting OFF on input line 4172.
Package hyperref Info: Hyper index ON on input line 4175.
Package hyperref Info: Plain pages OFF on input line 4182.
Package hyperref Info: Backreferencing OFF on input line 4187.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4434.
LaTeX Info: Redefining \href on input line 4683.
\c@Hy@tempcnt=\count323
LaTeX Info: Redefining \url on input line 4772.
\XeTeXLinkMargin=\dimen259

(/usr/local/texlive/2023/texmf-dist/tex/generic/bitset/bitset.sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)

(/usr/local/texlive/2023/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
\Fld@menulength=\count324
\Field@Width=\dimen260
\Fld@charsize=\dimen261
Package hyperref Info: Hyper figures ON on input line 6049.
Package hyperref Info: Link nesting OFF on input line 6056.
Package hyperref Info: Hyper index ON on input line 6059.
Package hyperref Info: backreferencing OFF on input line 6066.
Package hyperref Info: Link coloring OFF on input line 6071.
Package hyperref Info: Link coloring with OCG OFF on input line 6076.
Package hyperref Info: PDF/A mode OFF on input line 6081.

(/usr/local/texlive/2023/texmf-dist/tex/latex/base/atbegshi-ltx.sty
Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi
package with kernel methods
)
\Hy@abspage=\count325
\c@Item=\count326
\c@Hfootnote=\count327
)
Package hyperref Info: Driver: hpdftex.

(/usr/local/texlive/2023/texmf-dist/tex/latex/hyperref/hpdftex.def
File: hpdftex.def 2023-05-16 v7.00y Hyperref driver for pdfTeX

(/usr/local/texlive/2023/texmf-dist/tex/latex/base/atveryend-ltx.sty
Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atveryend pac
kage
with kernel methods
)
\Fld@listcount=\count328
\c@bookmark@seq@number=\count329

(/usr/local/texlive/2023/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
Package: rerunfilecheck 2022-07-10 v1.10 Rerun checks for auxiliary files (HO)

(/usr/local/texlive/2023/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
85.
)
\Hy@SectionHShift=\skip63
)
\upm@smalllogo@height=\dimen262
) (./spimbasephdthesis.sty
Package: spimbasephdthesis 2022/10/04

(/usr/local/texlive/2023/texmf-dist/tex/latex/lettrine/lettrine.sty
File: lettrine.sty 2023-04-18 v2.40 (Daniel Flipo)

(/usr/local/texlive/2023/texmf-dist/tex/latex/l3packages/xfp/xfp.sty
(/usr/local/texlive/2023/texmf-dist/tex/latex/l3kernel/expl3.sty
Package: expl3 2023-05-22 L3 programming layer (loader) 

(/usr/local/texlive/2023/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
File: l3backend-pdftex.def 2023-04-19 L3 backend support: PDF output (pdfTeX)
\l__color_backend_stack_int=\count330
\l__pdf_internal_box=\box115
))
Package: xfp 2023-02-02 L3 Floating point unit
)
\c@DefaultLines=\count331
\c@DefaultDepth=\count332
\DefaultFindent=\dimen263
\DefaultNindent=\dimen264
\DefaultSlope=\dimen265
\DiscardVskip=\dimen266
\L@lbox=\box116
\L@tbox=\box117
\c@L@lines=\count333
\c@L@depth=\count334
\L@Pindent=\dimen267
\L@Findent=\dimen268
\L@Nindent=\dimen269
\L@lraise=\dimen270
\L@first=\dimen271
\L@next=\dimen272
\L@slope=\dimen273
\L@height=\dimen274
\L@novskip=\dimen275
\L@target@ht=\dimen276
\L@target@dp=\dimen277
\L@target@tht=\dimen278
\LettrineWidth=\dimen279
\LettrineHeight=\dimen280
\LettrineDepth=\dimen281
Loading lettrine.cfg
(/usr/local/texlive/2023/texmf-dist/tex/latex/lettrine/lettrine.cfg)
\Llist@everypar=\toks42
)
*** define the extension value backcovermessage ****)
**** including upm extension spimufcphdthesis (upmext-spimufcphdthesis.cfg) ***
* (./upmext-spimufcphdthesis.cfg *** define the extension value copyright ****
*** style extension spimufcphdthesis, Copyright {(c)} 2012--22 Prof. Dr. St\unh
box \voidb@x \bgroup \let \unhbox \voidb@x \setbox \@tempboxa \hbox {e\global \
mathchardef \accent@spacefactor \spacefactor }\let \begingroup \let \typeout \p
rotect \begingroup \def \MessageBreak {
(Font)              }\let \protect \immediate\write \m@ne {LaTeX Font Info:    
 on input line 5.}\endgroup \endgroup \relax \let \ignorespaces \relax \accent 
19 e\egroup \spacefactor \accent@spacefactor phane GALLAND. ****
*** define the extension value trademarks ****
(/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/helvet.sty
Package: helvet 2020/03/25 PSNFSS-v9.3 (WaS) 
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/base/textcomp.sty
Package: textcomp 2020/02/02 v2.0n Standard LaTeX package
)
*** define the extension value watermarksize ****
*** define the extension value doctoralschoolnumber ****
*** define the extension value doctoralschoolname ****
*** define the extension value universityname ****
*** define the extension value speciality ****
*** define the extension value defensedate ****
*** define the extension value ubfcaddress ****
*** define the extension value jurytabwidth ****
*** define the extension value defensemessagestyle ****
*** define the extension value jurystyle ****
*** define the extension value defensemessage ****
*** define the extension value doctoralschoollogo ****
*** define the extension value minorlanguagethesistitle ****))
(/usr/local/texlive/2023/texmf-dist/tex/latex/base/inputenc.sty
Package: inputenc 2021/02/14 v1.3d Input encoding file
\inpenc@prehook=\toks43
\inpenc@posthook=\toks44
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
LaTeX Font Info:    Trying to load font information for T1+phv on input line 11
2.

(/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/t1phv.fd
File: t1phv.fd 2020/03/25 scalable font definitions for T1/phv.
))
(/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/times.sty
Package: times 2020/03/25 PSNFSS-v9.3 (SPQR) 
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/adjustbox/adjustbox.sty
Package: adjustbox 2022/10/17 v1.3a Adjusting TeX boxes (trim, clip, ...)

(/usr/local/texlive/2023/texmf-dist/tex/latex/adjustbox/adjcalc.sty
Package: adjcalc 2012/05/16 v1.1 Provides advanced setlength with multiple back
-ends (calc, etex, pgfmath)
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/adjustbox/trimclip.sty
Package: trimclip 2020/08/19 v1.2 Trim and clip general TeX material

(/usr/local/texlive/2023/texmf-dist/tex/latex/collectbox/collectbox.sty
Package: collectbox 2022/10/17 v0.4c Collect macro arguments as boxes
\collectedbox=\box118
)
\tc@llx=\dimen282
\tc@lly=\dimen283
\tc@urx=\dimen284
\tc@ury=\dimen285
Package trimclip Info: Using driver 'tc-pdftex.def'.

(/usr/local/texlive/2023/texmf-dist/tex/latex/adjustbox/tc-pdftex.def
File: tc-pdftex.def 2019/01/04 v2.2 Clipping driver for pdftex
))
\adjbox@Width=\dimen286
\adjbox@Height=\dimen287
\adjbox@Depth=\dimen288
\adjbox@Totalheight=\dimen289
\adjbox@pwidth=\dimen290
\adjbox@pheight=\dimen291
\adjbox@pdepth=\dimen292
\adjbox@ptotalheight=\dimen293

(/usr/local/texlive/2023/texmf-dist/tex/latex/ifoddpage/ifoddpage.sty
Package: ifoddpage 2022/10/18 v1.2 Conditionals for odd/even page detection
\c@checkoddpage=\count335
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/varwidth/varwidth.sty
Package: varwidth 2009/03/30 ver 0.92;  Variable-width minipages
\@vwid@box=\box119
\sift@deathcycles=\count336
\@vwid@loff=\dimen294
\@vwid@roff=\dimen295
))
(/usr/local/texlive/2023/texmf-dist/tex/latex/algorithms/algorithm.sty
Package: algorithm 2009/08/24 v0.1 Document Style `algorithm' - floating enviro
nment

(/usr/local/texlive/2023/texmf-dist/tex/latex/float/float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count337
\float@exts=\toks45
\float@box=\box120
\@float@everytoks=\toks46
\@floatcapt=\box121
)
\@float@every@algorithm=\toks47
\c@algorithm=\count338
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/algorithmicx/algpseudocode.sty
Package: algpseudocode 

(/usr/local/texlive/2023/texmf-dist/tex/latex/algorithmicx/algorithmicx.sty
Package: algorithmicx 2005/04/27 v1.2 Algorithmicx

Document Style algorithmicx 1.2 - a greatly improved `algorithmic' style
\c@ALG@line=\count339
\c@ALG@rem=\count340
\c@ALG@nested=\count341
\ALG@tlm=\skip64
\ALG@thistlm=\skip65
\c@ALG@Lnr=\count342
\c@ALG@blocknr=\count343
\c@ALG@storecount=\count344
\c@ALG@tmpcounter=\count345
\ALG@tmplength=\skip66
)
Document Style - pseudocode environments for use with the `algorithmicx' style
) *** define the extension value defensedate ****
*** define the extension value defenselocation ****
(/usr/local/texlive/2023/texmf-dist/tex/latex/tools/layout.sty
Package: layout 2021-03-10 v1.2e Show layout parameters
\oneinch=\count346
\cnt@paperwidth=\count347
\cnt@paperheight=\count348
\cnt@hoffset=\count349
\cnt@voffset=\count350
\cnt@textheight=\count351
\cnt@textwidth=\count352
\cnt@topmargin=\count353
\cnt@oddsidemargin=\count354
\cnt@evensidemargin=\count355
\cnt@headheight=\count356
\cnt@headsep=\count357
\cnt@marginparsep=\count358
\cnt@marginparwidth=\count359
\cnt@marginparpush=\count360
\cnt@footskip=\count361
\fheight=\count362
\ref@top=\count363
\ref@hoffset=\count364
\ref@voffset=\count365
\ref@head=\count366
\ref@body=\count367
\ref@foot=\count368
\ref@margin=\count369
\ref@marginwidth=\count370
\ref@marginpar=\count371
\Interval=\count372
\ExtraYPos=\count373
\PositionX=\count374
\PositionY=\count375
\ArrowLength=\count376
)
(/usr/local/texlive/2023/texmf-dist/tex/latex/geometry/geometry.sty
Package: geometry 2020/01/02 v5.9 Page Geometry

(/usr/local/texlive/2023/texmf-dist/tex/generic/iftex/ifvtex.sty
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
)
\Gm@cnth=\count377
\Gm@cntv=\count378
\c@Gm@tempcnt=\count379
\Gm@bindingoffset=\dimen296
\Gm@wd@mp=\dimen297
\Gm@odd@mp=\dimen298
\Gm@even@mp=\dimen299
\Gm@layoutwidth=\dimen300
\Gm@layoutheight=\dimen301
\Gm@layouthoffset=\dimen302
\Gm@layoutvoffset=\dimen303
\Gm@dimlist=\toks48
) (./main.aux

LaTeX Warning: Label `fig:figCycle' multiply defined.

)
\openout1 = `main.aux'.

LaTeX Font Info:    Checking defaults for OML/txmi/m/it on input line 227.
LaTeX Font Info:    Trying to load font information for OML+txmi on input line 
227.
 (/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/omltxmi.fd
File: omltxmi.fd 2000/12/15 v3.1
)
LaTeX Font Info:    ... okay on input line 227.
LaTeX Font Info:    Checking defaults for OMS/txsy/m/n on input line 227.
LaTeX Font Info:    Trying to load font information for OMS+txsy on input line 
227.

(/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/omstxsy.fd
File: omstxsy.fd 2000/12/15 v3.1
)
LaTeX Font Info:    ... okay on input line 227.
LaTeX Font Info:    Checking defaults for OT1/cmr/m/n on input line 227.
LaTeX Font Info:    ... okay on input line 227.
LaTeX Font Info:    Checking defaults for T1/cmr/m/n on input line 227.
LaTeX Font Info:    ... okay on input line 227.
LaTeX Font Info:    Checking defaults for TS1/cmr/m/n on input line 227.
LaTeX Font Info:    ... okay on input line 227.
LaTeX Font Info:    Checking defaults for OMX/txex/m/n on input line 227.
LaTeX Font Info:    Trying to load font information for OMX+txex on input line 
227.

(/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/omxtxex.fd
File: omxtxex.fd 2000/12/15 v3.1
)
LaTeX Font Info:    ... okay on input line 227.
LaTeX Font Info:    Checking defaults for U/txexa/m/n on input line 227.
LaTeX Font Info:    Trying to load font information for U+txexa on input line 2
27.

(/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/utxexa.fd
File: utxexa.fd 2000/12/15 v3.1
)
LaTeX Font Info:    ... okay on input line 227.
LaTeX Font Info:    Checking defaults for PD1/pdf/m/n on input line 227.
LaTeX Font Info:    ... okay on input line 227.
LaTeX Font Info:    Checking defaults for PU/pdf/m/n on input line 227.
LaTeX Font Info:    ... okay on input line 227.

(/usr/local/texlive/2023/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count380
\scratchdimen=\dimen304
\scratchbox=\box122
\nofMPsegments=\count381
\nofMParguments=\count382
\everyMPshowfont=\toks49
\MPscratchCnt=\count383
\MPscratchDim=\dimen305
\MPnumerator=\count384
\makeMPintoPDFobject=\count385
\everyMPtoPDFconversion=\toks50
) (/usr/local/texlive/2023/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
85.

(/usr/local/texlive/2023/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 Info: Redefining \degres on input line 227.
LaTeX Info: Redefining \up on input line 227.
Package caption Info: Begin \AtBeginDocument code.
Package caption Info: float package is loaded.
Package caption Info: hyperref package is loaded.
Package caption Info: picinpar package is loaded.
Package caption Info: End \AtBeginDocument code.

*** Overriding the 'enumerate' environment. Pass option 'standardlists' for avo
iding this override.
*** Overriding the 'description' environment. Pass option 'standardlists' for a
voiding this override. ************ USE CUSTOM FRONT COVER
Package hyperref Info: Link coloring OFF on input line 227.
 (./main.out)
(./main.out)
\@outlinefile=\write3
\openout3 = `main.out'.


*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
*geometry* verbose mode - [ preamble ] result:
* pass: disregarded the geometry package!
* \paperwidth=598.14806pt
* \paperheight=845.90042pt
* \textwidth=427.43153pt
* \textheight=671.71976pt
* \oddsidemargin=99.58464pt
* \evensidemargin=71.13188pt
* \topmargin=56.9055pt
* \headheight=12.0pt
* \headsep=31.29802pt
* \topskip=11.0pt
* \footskip=31.29802pt
* \marginparwidth=54.2025pt
* \marginparsep=7.0pt
* \columnsep=10.0pt
* \skip\footins=10.0pt plus 4.0pt minus 2.0pt
* \hoffset=-72.26999pt
* \voffset=-72.26999pt
* \mag=1000
* \@twocolumnfalse
* \@twosidetrue
* \@mparswitchtrue
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)

*geometry* verbose mode - [ newgeometry ] result:
* driver: pdftex
* paper: a4paper
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes: twoside 
* h-part:(L,W,R)=(170.71652pt, 355.65306pt, 71.77847pt)
* v-part:(T,H,B)=(101.50906pt, 741.54591pt, 2.84544pt)
* \paperwidth=598.14806pt
* \paperheight=845.90042pt
* \textwidth=355.65306pt
* \textheight=741.54591pt
* \oddsidemargin=98.44653pt
* \evensidemargin=-0.49152pt
* \topmargin=-14.05894pt
* \headheight=12.0pt
* \headsep=31.29802pt
* \topskip=11.0pt
* \footskip=31.29802pt
* \marginparwidth=54.2025pt
* \marginparsep=7.0pt
* \columnsep=10.0pt
* \skip\footins=10.0pt plus 4.0pt minus 2.0pt
* \hoffset=-72.26999pt
* \voffset=-72.26999pt
* \mag=1000
* \@twocolumnfalse
* \@twosidetrue
* \@mparswitchtrue
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)

<images_logos/image1_logoUBFC_grand.png, id=108, 156.6945pt x 74.898pt>
File: images_logos/image1_logoUBFC_grand.png Graphic file (type png)
<use images_logos/image1_logoUBFC_grand.png>
Package pdftex.def Info: images_logos/image1_logoUBFC_grand.png  used on input 
line 233.
(pdftex.def)             Requested size: 142.25905pt x 68.00069pt.
<images_logos/logo_UFC_2018_transparence.png, id=110, 1160.335pt x 285.065pt>
File: images_logos/logo_UFC_2018_transparence.png Graphic file (type png)
<use images_logos/logo_UFC_2018_transparence.png>
Package pdftex.def Info: images_logos/logo_UFC_2018_transparence.png  used on i
nput line 233.
(pdftex.def)             Requested size: 142.25905pt x 34.94577pt.
LaTeX Font Info:    Trying to load font information for OT1+txr on input line 2
43.
(/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/ot1txr.fd
File: ot1txr.fd 2000/12/15 v3.1
)
LaTeX Font Info:    Trying to load font information for U+txmia on input line 2
43.

(/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/utxmia.fd
File: utxmia.fd 2000/12/15 v3.1
)
LaTeX Font Info:    Trying to load font information for U+txsya on input line 2
43.

(/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/utxsya.fd
File: utxsya.fd 2000/12/15 v3.1
)
LaTeX Font Info:    Trying to load font information for U+txsyb on input line 2
43.

(/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/utxsyb.fd
File: utxsyb.fd 2000/12/15 v3.1
)
LaTeX Font Info:    Trying to load font information for U+txsyc on input line 2
43.

(/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/utxsyc.fd
File: utxsyc.fd 2000/12/15 v3.1
) [1




{/usr/local/texlive/2023/texmf-var/fonts/map/pdftex/updmap/pdftex.map}{/usr/loc
al/texlive/2023/texmf-dist/fonts/enc/dvips/base/8r.enc} <./images_logos/image1_
logoUBFC_grand.png> <./images_logos/logo_UFC_2018_transparence.png>] [2


] [3] [4]
(./main.toc
LaTeX Font Info:    Font shape `T1/phv/m/it' in size <10.95> not available
(Font)              Font shape `T1/phv/m/sl' tried instead on input line 20.

Underfull \vbox (badness 10000) has occurred while \output is active []

 [5

])
\tf@toc=\write4
\openout4 = `main.toc'.


[6] [1


] [2]
Chapitre 1.
Package lettrine.sty Info: Targeted height = 23.36736pt
(lettrine.sty)             (for loversize=0, accent excluded),
(lettrine.sty)             Lettrine height = 24.12178pt (\uppercase {C});
(lettrine.sty)             reported on input line 337.

Underfull \hbox (badness 10000) in paragraph at lines 337--337

 []


Underfull \hbox (badness 10000) in paragraph at lines 337--337

 []


Underfull \hbox (badness 10000) in paragraph at lines 337--337

 []


Underfull \vbox (badness 10000) has occurred while \output is active []

 [3

]
Overfull \hbox (6.79999pt too wide) in paragraph at lines 337--337
[][][][] 
 []


Underfull \hbox (badness 10000) in paragraph at lines 337--337

 []

[4]
Underfull \hbox (badness 10000) in paragraph at lines 358--359

 []

[5] [6]
Chapitre 2.

Underfull \hbox (badness 10000) in paragraph at lines 368--369

 []

[7

]
Underfull \hbox (badness 10000) in paragraph at lines 373--374

 []

<./Figures/EIAH.png, id=207, 546.54187pt x 468.24937pt>
File: ./Figures/EIAH.png Graphic file (type png)
<use ./Figures/EIAH.png>
Package pdftex.def Info: ./Figures/EIAH.png  used on input line 376.
(pdftex.def)             Requested size: 273.27026pt x 234.1241pt.
<./Figures/TLearning.png, id=212, 1004.25188pt x 275.52937pt>
File: ./Figures/TLearning.png Graphic file (type png)
<use ./Figures/TLearning.png>
Package pdftex.def Info: ./Figures/TLearning.png  used on input line 384.
(pdftex.def)             Requested size: 401.69363pt x 110.20978pt.

Underfull \hbox (badness 10000) in paragraph at lines 393--394

 []

[8 <./Figures/EIAH.png>]
Underfull \hbox (badness 3219) in paragraph at lines 395--396
[]\T1/phv/m/n/10.95 L'autre stra-té-gie glo-bale est l'ap-pren-tis-sage on-line
, qui est basé sur les res-
 []


Underfull \hbox (badness 5592) in paragraph at lines 395--396
\T1/phv/m/n/10.95 sources et l'in-for-ma-tion dis-po-nible sur le web. Cette st
ra-té-gie in-cite ac-ti-ve-
 []


Underfull \hbox (badness 3815) in paragraph at lines 395--396
\T1/phv/m/n/10.95 ment les ap-pre-nants à ac-qué-rir de nou-velles connais-sanc
es in-dé-pen-dam-ment
 []


Underfull \hbox (badness 1924) in paragraph at lines 395--396
[][][][][][] \T1/phv/m/n/10.95 grâce aux vastes res-sources
 []


Underfull \hbox (badness 10000) in paragraph at lines 395--396

 []


Underfull \hbox (badness 3128) in paragraph at lines 422--423
\T1/phv/m/n/10.95 saie d'imi-ter le com-por-te-ment hu-main pour ré-soudre de n
ou-veaux pro-blèmes,
 []


Underfull \hbox (badness 2435) in paragraph at lines 422--423
\T1/phv/m/n/10.95 en se sou-ve-nant des ex-pé-riences pas-sées. Le prin-cipe de
 base est que les
 []


Underfull \hbox (badness 2538) in paragraph at lines 422--423
\T1/phv/m/n/10.95 pro-blèmes si-mi-laires ont des so-lu-tions si-mi-laires. Si 
un nou-veau pro-blème ar-
 []


Underfull \hbox (badness 2818) in paragraph at lines 422--423
\T1/phv/m/n/10.95 rive et que le mo-dèle connait déjà la so-lu-tion d'un pro-bl
ème si-mi-laire, alors
 []


Underfull \hbox (badness 1675) in paragraph at lines 422--423
\T1/phv/m/n/10.95 la so-lu-tion au nou-veau pro-blème peut être in-fé-rée des s
o-lu-tions déjà trou-vées
 []


Underfull \hbox (badness 10000) in paragraph at lines 422--423
[][][][][][]
 []


Underfull \hbox (badness 10000) in paragraph at lines 422--423

 []

[9 <./Figures/TLearning.png>]
Underfull \hbox (badness 10000) in paragraph at lines 424--425

 []


Underfull \hbox (badness 10000) in paragraph at lines 426--427

 []

<./Figures/cycle.png, id=229, 6.97093pt x 9.97743pt>
File: ./Figures/cycle.png Graphic file (type png)
<use ./Figures/cycle.png>
Package pdftex.def Info: ./Figures/cycle.png  used on input line 428.
(pdftex.def)             Requested size: 209.12704pt x 299.3216pt.
[10 <./Figures/cycle.png>]
Underfull \hbox (badness 10000) in paragraph at lines 440--441

 []


Underfull \hbox (badness 10000) in paragraph at lines 451--452

 []


Underfull \hbox (badness 10000) in paragraph at lines 453--455

 []

[11]
<./Figures/Reuse.png, id=260, 13.65732pt x 3.78421pt>
File: ./Figures/Reuse.png Graphic file (type png)
<use ./Figures/Reuse.png>
Package pdftex.def Info: ./Figures/Reuse.png  used on input line 456.
(pdftex.def)             Requested size: 273.14514pt x 75.6836pt.

Underfull \hbox (badness 10000) in paragraph at lines 467--468

 []


Underfull \hbox (badness 10000) in paragraph at lines 469--470

 []


Underfull \hbox (badness 10000) in paragraph at lines 471--472

 []

[12 <./Figures/Reuse.png>]
Underfull \hbox (badness 6691) in paragraph at lines 486--487
[]\T1/phv/m/n/10.95 Conteneur du vo-ca-bu-laire : il contient l'in-for-ma-tion 
de la re-pré-sen-ta-
 []


Underfull \hbox (badness 10000) in paragraph at lines 487--488

 []


Underfull \hbox (badness 10000) in paragraph at lines 490--491

 []

[13]
<./Figures/CycleCBR.png, id=277, 147.1899pt x 83.8332pt>
File: ./Figures/CycleCBR.png Graphic file (type png)
<use ./Figures/CycleCBR.png>
Package pdftex.def Info: ./Figures/CycleCBR.png  used on input line 492.
(pdftex.def)             Requested size: 367.97382pt x 209.58244pt.

Underfull \hbox (badness 10000) in paragraph at lines 503--504

 []

[14 <./Figures/CycleCBR.png>]
Underfull \hbox (badness 10000) in paragraph at lines 511--512

 []


Underfull \hbox (badness 10000) in paragraph at lines 531--532

 []

[15]
Underfull \hbox (badness 10000) in paragraph at lines 537--538

 []


Underfull \hbox (badness 1668) in paragraph at lines 564--565
[][][][][][][]\T1/phv/m/n/10.95 Souvent, pour dé-ci-der de la
 []

[16]

LaTeX Warning: Command \textperiodcentered invalid in math mode on input line 5
99.

LaTeX Font Info:    Trying to load font information for TS1+phv on input line 5
99.
(/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/ts1phv.fd
File: ts1phv.fd 2020/03/25 scalable font definitions for TS1/phv.
)

LaTeX Warning: Command \textperiodcentered invalid in math mode on input line 5
99.


LaTeX Warning: Command \textperiodcentered invalid in math mode on input line 5
99.


LaTeX Warning: Command \textperiodcentered invalid in math mode on input line 5
99.


LaTeX Warning: Command \textperiodcentered invalid in math mode on input line 5
99.


LaTeX Warning: Command \textperiodcentered invalid in math mode on input line 5
99.

Missing character: There is no · in font txr!
Missing character: There is no · in font txr!
Missing character: There is no · in font txr!
[17]

LaTeX Font Warning: Font shape `T1/phv/m/scit' undefined
(Font)              using `T1/phv/m/it' instead on input line 618.

LaTeX Font Info:    Font shape `T1/phv/m/it' in size <12> not available
(Font)              Font shape `T1/phv/m/sl' tried instead on input line 618.
[18]

LaTeX Font Warning: Font shape `T1/phv/m/scit' undefined
(Font)              using `T1/phv/m/it' instead on input line 672.

[19]

LaTeX Font Warning: Font shape `T1/phv/m/scit' undefined
(Font)              using `T1/phv/m/it' instead on input line 676.


Underfull \hbox (badness 1028) in paragraph at lines 678--679
[]\T1/phv/m/n/10.95 Comme in-di-qué dans [[]], l'al-go-rithme d'échan-tillon-na
ge de Thomp-son est
 []


Underfull \hbox (badness 10000) in paragraph at lines 678--679

 []


Underfull \hbox (badness 10000) in paragraph at lines 680--681

 []

<./Figures/beta-distribution.png, id=362, 621.11293pt x 480.07928pt>
File: ./Figures/beta-distribution.png Graphic file (type png)
<use ./Figures/beta-distribution.png>
Package pdftex.def Info: ./Figures/beta-distribution.png  used on input line 68
2.
(pdftex.def)             Requested size: 310.55571pt x 240.03905pt.

Underfull \hbox (badness 10000) in paragraph at lines 700--701

 []

[20] [21 <./Figures/beta-distribution.png>] [22

] [23] [24]
Chapitre 3.

Underfull \hbox (badness 10000) in paragraph at lines 711--712

 []


Underfull \hbox (badness 10000) in paragraph at lines 713--714

 []

[25

]
Underfull \hbox (badness 2376) in paragraph at lines 715--716
[]\T1/phv/m/n/10.95 Les tech-niques d'IA peuvent aussi ai-der à prendre des dé-
ci-sions stra-té-giques
 []


Underfull \hbox (badness 6526) in paragraph at lines 715--716
\T1/phv/m/n/10.95 qui visent des ob-jec-tifs à long échéance comme le montre le
 tra-vail de
 []


Underfull \hbox (badness 10000) in paragraph at lines 719--720

 []

[26]
<./Figures/architecture.png, id=405, 776.9025pt x 454.69875pt>
File: ./Figures/architecture.png Graphic file (type png)
<use ./Figures/architecture.png>
Package pdftex.def Info: ./Figures/architecture.png  used on input line 723.
(pdftex.def)             Requested size: 388.45029pt x 227.34882pt.

Underfull \hbox (badness 8170) in paragraph at lines 724--724
[]\T1/phv/m/sc/10.95 Figure 3.1 \T1/phv/m/n/10.95 ^^U |Ar-chi-tec-ture du sys-t
ème de re-com-man-da-tion pro-posé dans
 []


Underfull \hbox (badness 10000) in paragraph at lines 728--729

 []


Underfull \hbox (badness 10000) in paragraph at lines 730--731

 []


Underfull \vbox (badness 5893) has occurred while \output is active []

 [27 <./Figures/architecture.png>]
Underfull \hbox (badness 10000) in paragraph at lines 732--733

 []


Underfull \hbox (badness 10000) in paragraph at lines 734--735

 []


Underfull \hbox (badness 10000) in paragraph at lines 736--737

 []


Underfull \vbox (badness 10000) has occurred while \output is active []

 [28]
Underfull \hbox (badness 10000) in paragraph at lines 738--739

 []

<./Figures/ELearningLevels.png, id=433, 602.25pt x 612.78937pt>
File: ./Figures/ELearningLevels.png Graphic file (type png)
<use ./Figures/ELearningLevels.png>
Package pdftex.def Info: ./Figures/ELearningLevels.png  used on input line 740.

(pdftex.def)             Requested size: 301.12425pt x 306.39394pt.

Underfull \hbox (badness 10000) in paragraph at lines 749--750

 []


Underfull \hbox (badness 10000) in paragraph at lines 751--752

 []


Overfull \hbox (2.56369pt too wide) in paragraph at lines 760--760
[]|\T1/phv/m/n/9 [[]]| 
 []


Overfull \hbox (0.5975pt too wide) in paragraph at lines 755--771
[][] 
 []

(./main.bbl [29] [30 <./Figures/ELearningLevels.png>]
Underfull \hbox (badness 1394) in paragraph at lines 34--40
[]\T1/phv/m/n/10.95 Henriet, J., Chris-tophe, L., and Laurent, P. (2017).  Ar-t
i-fi-cial
 []

[31

]
Underfull \hbox (badness 1939) in paragraph at lines 95--99
[]\T1/phv/m/n/10.95 Muangprathub, J., Boon-jing, V., and Cham-nong-thai, K.
 []


Underfull \vbox (badness 2150) has occurred while \output is active []

 [32])
[33] [34

]
LaTeX Font Info:    Trying to load font information for T1+pcr on input line 78
1.
 (/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/t1pcr.fd
File: t1pcr.fd 2001/06/04 font definitions for T1/pcr.
)
[35]
<spim.pdf, id=488, 369.97931pt x 65.45471pt>
File: spim.pdf Graphic file (type pdf)
<use spim.pdf>
Package pdftex.def Info: spim.pdf  used on input line 781.
(pdftex.def)             Requested size: 170.0pt x 30.07556pt.
<ubfc.pdf, id=489, 151.71176pt x 94.80376pt>
File: ubfc.pdf Graphic file (type pdf)
<use ubfc.pdf>
Package pdftex.def Info: ubfc.pdf  used on input line 781.
(pdftex.def)             Requested size: 50.08586pt x 31.2982pt.
 [36

 <./spim.pdf> <./ubfc.pdf

pdfTeX warning: /Library/TeX/texbin/pdflatex (file ./ubfc.pdf): PDF inclusion: 
multiple pdfs with page group included in a single page
>] (./main.aux)

LaTeX Warning: There were multiply-defined labels.

Package rerunfilecheck Info: File `main.out' has not changed.
(rerunfilecheck)             Checksum: F7B40CA71D6DF7DEBE42C418DB3FFD5B;6176.
 ) 
Here is how much of TeX's memory you used:
 20447 strings out of 476038
 346301 string characters out of 5790170
 1864785 words of memory out of 5000000
 40301 multiletter control sequences out of 15000+600000
 618040 words of font info for 147 fonts, out of 8000000 for 9000
 1141 hyphenation exceptions out of 8191
 126i,15n,133p,2134b,754s stack positions out of 10000i,1000n,20000p,200000b,200000s

pdfTeX warning (dest): name{cite.doi\\penalty\040\\@M\040\040:10.1177/175433711
6651013} has been referenced but does not exist, replaced by a fixed one

</usr/local/texlive/2023/texmf-dist/fonts/type1/public/txfonts/rtxmi.pfb></usr/
local/texlive/2023/texmf-dist/fonts/type1/public/txfonts/rtxr.pfb></usr/local/t
exlive/2023/texmf-dist/fonts/type1/public/txfonts/txex.pfb></usr/local/texlive/
2023/texmf-dist/fonts/type1/public/txfonts/txsy.pfb></usr/local/texlive/2023/te
xmf-dist/fonts/type1/public/txfonts/txsyb.pfb></usr/local/texlive/2023/texmf-di
st/fonts/type1/public/txfonts/txsyc.pfb></usr/local/texlive/2023/texmf-dist/fon
ts/type1/urw/courier/ucrr8a.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1
/urw/helvetic/uhvb8a.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1/urw/he
lvetic/uhvr8a.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1/urw/helvetic/
uhvro8a.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1/urw/times/utmr8a.pf
b></usr/local/texlive/2023/texmf-dist/fonts/type1/urw/times/utmri8a.pfb>
Output written on main.pdf (42 pages, 2156659 bytes).
PDF statistics:
 608 PDF objects out of 1000 (max. 8388607)
 498 compressed objects within 5 object streams
 131 named destinations out of 1000 (max. 500000)
 269 words of extra memory for PDF output out of 10000 (max. 10000000)