Merge branch 'master' of https://github.com/matteodelabre/projet-cmi
This commit is contained in:
		
						commit
						81924e6fdb
					
				|  | @ -1,6 +1,17 @@ | |||
| *~ | ||||
| 
 | ||||
| CMakeFiles | ||||
| CMakeCache.txt | ||||
| Makefile | ||||
| ptf | ||||
| cmake_install.cmake | ||||
| 
 | ||||
| *.aux | ||||
| *.bbl | ||||
| *.blg | ||||
| *.out | ||||
| *.toc | ||||
| *.fdb_latexmk | ||||
| *.fls | ||||
| *.log | ||||
| *.synctex.gz | ||||
|  |  | |||
|  | @ -1,5 +1,7 @@ | |||
| # projet-cmi | ||||
| Projet CMI | ||||
| <div align="center"> | ||||
|     <img src="https://cdn.rawgit.com/matteodelabre/projet-cmi/master/docs/screenshots/02.png" alt="Capture d'écran du jeu" /> | ||||
|     <h1>projet-cmi</h1> | ||||
| </div> | ||||
| 
 | ||||
| Arborescence : | ||||
| 
 | ||||
|  |  | |||
										
											Binary file not shown.
										
									
								
							|  | @ -0,0 +1,66 @@ | |||
| \documentclass[tikz,border=30pt]{standalone} | ||||
| 
 | ||||
| \usepackage[utf8]{inputenc} | ||||
| \usepackage[T1]{fontenc} | ||||
| \usepackage{lmodern} | ||||
| \usepackage{tikz} | ||||
| \usepackage{tikz-uml} | ||||
| \usepackage[french]{babel} | ||||
| 
 | ||||
| \begin{document} | ||||
| \begin{tikzpicture} | ||||
|     \umlclass[x=6]{Engine}{ | ||||
|         clock : horloge\\ | ||||
|         state : \texttt{EngineState} | ||||
|     }{ | ||||
|         update() : vide\\ | ||||
|         draw() : vide\\ | ||||
|         start() : vide\\ | ||||
|         addObject(objet : \texttt{Object}) : vide | ||||
|     } | ||||
| 
 | ||||
|     \umlclass{EngineState}{ | ||||
|         objects : tableau d'\texttt{Object}\\ | ||||
|         keys : tableau de booléens\\ | ||||
|         delta : flottant | ||||
|     }{} | ||||
| 
 | ||||
|     \umlabstract[y=-5.5]{Object}{ | ||||
|         acceleration : vecteur\\ | ||||
|         velocity : vecteur\\ | ||||
|         position : vecteur\\ | ||||
|         mass : flottant\\ | ||||
|         charge : flottant\\ | ||||
|         restitution : flottant\\ | ||||
|         layer : entier | ||||
|     }{ | ||||
|         \umlvirt{draw() : vide}\\ | ||||
|         \umlvirt{getForces(état : \texttt{EngineState}) : vecteur}\\ | ||||
|         \umlvirt{update(état : \texttt{EngineState}) : vide}\\ | ||||
|         \umlvirt{getAABB() : boîte}\\ | ||||
|         \umlvirt{getCollisionInfo(balle : \texttt{Ball}) : vecteur, flottant}\\ | ||||
|         \umlvirt{getCollisionInfo(bloc : \texttt{Block}) : vecteur, flottant}\\ | ||||
|         collide(objet : \texttt{Object}) : vide | ||||
|     } | ||||
| 
 | ||||
|     \umlclass[y=-11,x=4]{Ball}{}{ | ||||
|         getForces(état : \texttt{EngineState}) : vecteur\\ | ||||
|         draw() : vide\\ | ||||
|         getAABB() : boîte\\ | ||||
|         getCollisionInfo(balle : \texttt{Ball}) : vecteur, flottant\\ | ||||
|         getCollisionInfo(bloc : \texttt{Block}) : vecteur, flottant | ||||
|     } | ||||
| 
 | ||||
|     \umlclass[y=-11,x=-4]{Block}{}{ | ||||
|         draw() : vide\\ | ||||
|         getAABB() : boîte\\ | ||||
|         getCollisionInfo(balle : \texttt{Ball}) : vecteur, flottant\\ | ||||
|         getCollisionInfo(bloc : \texttt{Block}) : vecteur, flottant | ||||
|     } | ||||
| 
 | ||||
|     \umlunicompo{EngineState}{Object} | ||||
|     \umluniassoc{Engine}{EngineState} | ||||
|     \umlinherit{Object}{Block} | ||||
|     \umlinherit{Object}{Ball} | ||||
| \end{tikzpicture} | ||||
| \end{document} | ||||
										
											Binary file not shown.
										
									
								
							|  | @ -0,0 +1,57 @@ | |||
| \documentclass[tikz,border=30pt]{standalone} | ||||
| 
 | ||||
| \usepackage[utf8]{inputenc} | ||||
| \usepackage[T1]{fontenc} | ||||
| \usepackage{lmodern} | ||||
| \usepackage{tikz} | ||||
| \usepackage{gantt} | ||||
| \usepackage[french]{babel} | ||||
| 
 | ||||
| \begin{document} | ||||
| \begin{gantt}{21}{20} | ||||
|     \begin{ganttitle} | ||||
|         \titleelement{Semaine 1 : 04/03 - 10/03}{4} | ||||
|         \titleelement{Semaine 2 : 11/03 - 17/03}{4} | ||||
|         \titleelement{Semaine 3 : 18/03 - 24/03}{4} | ||||
|         \titleelement{Semaine 4 : 25/03 - 31/03}{4} | ||||
|         \titleelement{Semaine 5 : 01/04 - 08/04}{4} | ||||
|     \end{ganttitle} | ||||
| 
 | ||||
|     \ganttgroup{Moteur physique}{0}{12} | ||||
|     \ganttbar[color=red,pattern=north east lines]{Organisation des classes}{0}{6} | ||||
|     \ganttbar[color=green,pattern=north east lines]{Gestion de l'affichage}{0}{8} | ||||
|     \ganttbar[color=red,pattern=north east lines]{Implémentation des forces}{0}{8} | ||||
|     \ganttbar[color=red,pattern=north east lines]{Gestion des collisions}{4}{6} | ||||
|     \ganttbar[color=cyan,pattern=north east lines]{Tests du moteur}{4}{8} | ||||
| 
 | ||||
|     \ganttgroup{Niveaux du jeu}{6}{14} | ||||
|     \ganttbar[color=cyan,pattern=north east lines]{Définition du format de fichier}{6}{2} | ||||
|     \ganttbar[color=red,pattern=north east lines]{Lecture et écriture du format}{8}{4} | ||||
|     \ganttbar[color=red,pattern=north east lines]{Création de l'éditeur}{8}{4} | ||||
|     \ganttbar{Niveau de test}{10}{2} | ||||
|     \ganttbar{Conception des niveaux}{12}{4} | ||||
|     \ganttbar{Tests des niveaux}{16}{4} | ||||
| 
 | ||||
|     \ganttgroup{Univers graphique}{8}{12} | ||||
|     \ganttbar[color=cyan,pattern=north east lines]{Recherche des musiques}{8}{8} | ||||
|     \ganttbar[color=green,pattern=north east lines]{Conception des textures}{8}{12} | ||||
|     \ganttbar{Menus et interface du jeu}{12}{4} | ||||
| 
 | ||||
|     \ganttmilestone{Figeage des fonctionnalités}{16} | ||||
|     \ganttbarcon{Tests finaux}{16}{4} | ||||
|     \ganttbar{Rapport}{16}{4} | ||||
| \end{gantt} | ||||
| 
 | ||||
| \hfill\\ | ||||
| \hfill\\ | ||||
| 
 | ||||
| Légende du document~: | ||||
| \begin{itemize} | ||||
|     \item Vert~: tâches affectées à Maëlle~; | ||||
|     \item Cyan~: tâches affectées à Rémi~; | ||||
|     \item Rouge~: tâches affectées à Mattéo~; | ||||
|     \item Hachures nord-est~: tâches affectées~; | ||||
|     \item Hachures nord-ouest~: tâches non-affectées. | ||||
| \end{itemize} | ||||
| 
 | ||||
| \end{document} | ||||
|  | @ -0,0 +1,16 @@ | |||
| # format-sauvegarde-fichier | ||||
| 
 | ||||
| ## En-tête du niveau (84 octets en moyenne) | ||||
| * Signature (3 octets : BRT) | ||||
| * Version (1 octet : départ à 0) | ||||
| * Titre du niveaux (n octets de texte + 1 octet nul). | ||||
| * (Numéro du niveau). | ||||
| * Position de départ (1 octet pour le nombre de balles + 8 octets par position). | ||||
| * Zone de mort (1 octet pour le nombre de points de contrôle + 8 octets par point). | ||||
| * Musique (n octets de texte + 1 octet nul). | ||||
| * Fond principal (n octets de texte + 1 octet nul). | ||||
| 
 | ||||
| ## Contenu | ||||
| * Boucle sur chaque bloc et donne le type et la position. | ||||
| * Adresse Fond principal. | ||||
| * Adresse position et couches des objets de décor. | ||||
|  | @ -1,9 +0,0 @@ | |||
| \relax  | ||||
| \catcode `:\active  | ||||
| \catcode `;\active  | ||||
| \catcode `!\active  | ||||
| \catcode `?\active  | ||||
| \select@language{french} | ||||
| \@writefile{toc}{\select@language{french}} | ||||
| \@writefile{lof}{\select@language{french}} | ||||
| \@writefile{lot}{\select@language{french}} | ||||
|  | @ -1,177 +0,0 @@ | |||
| # Fdb version 3 | ||||
| ["pdflatex"] 1457543825 "diagramme.tex" "/home/matteo/Développement/projet-cmi/docs/nouveau-diagramme-classe/diagramme.pdf" "diagramme" 1457543826 | ||||
|   "/dev/null" 1457539121 0 d41d8cd98f00b204e9800998ecf8427e "" | ||||
|   "/etc/texmf/web2c/texmf.cnf" 1448651457 1101 af7716885e081ab43982cab7b4672c1a "" | ||||
|   "/home/matteo/Développement/projet-cmi/docs/nouveau-diagramme-classe/diagramme.aux" 1457543826 242 1307d8a02d1e67cd0e2b52e6a2f90ab0 "" | ||||
|   "/home/matteo/texmf/tex/latex/tikz-uml/tikz-uml.sty" 1359744139 211430 eac0f9dc7c1f83dd13dd86c58b009eb9 "" | ||||
|   "/usr/share/texlive/texmf-dist/fonts/map/fontname/texfonts.map" 1272929888 3287 e6b82fe08f5336d4d5ebc73fb1152e87 "" | ||||
|   "/usr/share/texlive/texmf-dist/fonts/tfm/jknappen/ec/ecrm1000.tfm" 1136768653 3584 adb004a0c8e7c46ee66cad73671f37b4 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/context/base/supp-pdf.mkii" 1337017135 71627 94eb9990bed73c364d7f53f960cc8c5b "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/babel-french/frenchb.ldf" 1435536965 58724 88cbcf90df291ab617b57ef39c964247 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/babel/babel.def" 1411763270 49725 b40154b767b0073ee42b35911042b793 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty" 1411763270 13212 dc56c11a26f3ea97bcf005eeda274583 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty" 1284331290 1458 43ab4710dc82f3edeabecd0d099626b2 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/oberdiek/etexcmds.sty" 1335995445 7612 c47308d923ec19888707b0f1792b326a "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifluatex.sty" 1303254447 7324 11d14f318d865f420e692d4e6c9c18c3 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifpdf.sty" 1303254447 7140 ece2cc23d9f20e1f53975ac167f42d3e "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/oberdiek/infwarerr.sty" 1335995445 8253 3bdedc8409aa5d290a2339be6f09af03 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty" 1335995445 5152 387d9200f396b498d5fd679ae44ed898 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty" 1335995445 14040 8de9f47fabc4ca3bd69b6d795e32751c "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ltxcmds.sty" 1335995445 18425 775b341047ce304520cc7c11ca41392e "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty" 1335995445 19987 01cb2f3c1d21e5f05711b7fd50b17f2a "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex" 1288312291 1006 b103be0bfc8c1682ff1fa9760697a329 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex" 1393459310 42678 ea82fd948b4303ce6a2c8e25d5e8f8aa "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex" 1393459310 19287 b2041c22301def2360f03c004d16068d "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex" 1393459310 6653 6c617c4a5106d9f40e3d70946ba4e0ac "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex" 1393459310 7041 a891ad72049e17c4e366c40ca37b0ccb "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex" 1393459310 4625 40c07e9f6f2f7c674704b3f2055560ce "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex" 1203877327 2631 7eefa6cdbefd8d4e2bad7262cf1094cd "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex" 1393459310 43477 81143b33d9ebafdeead07ede13372427 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex" 1393459310 17436 8d99d4113be311daf23deff86991ee7d "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex" 1393459310 20857 256da99fc70ea570aad1d50fdfd51464 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex" 1393459310 9641 711f0edc22c180a5caf168b6e8970057 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex" 1393459310 34516 658a71478d21df554bce9d9cd436203a "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex" 1288312291 3052 e5672c657232fd63b0a9853b0746297c "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex" 1393459310 16849 86fed972a2b3ad61208a6422e104bf26 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex" 1393459310 21541 4cd19f8ff7dd74d5aa7d803a6397af84 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex" 1393459310 17423 a0f09c822b83b65445bc3ac25542dcc6 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex" 1393459310 8943 2e2495b057f8f0035b5568394d489963 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryarrows.code.tex" 1203727794 437 cf40f841f40822be6cb995f8b47112fd "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybackgrounds.code.tex" 1393459310 4611 b858a4e5bd5442802c91a13027dc25bb "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex" 1393459310 5484 4bb4a5cbbd05d6f17a261b59dbd014f1 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.markings.code.tex" 1203727794 782 2479083eef1ef47450770d40ad81f937 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfadings.code.tex" 1288312291 1298 83d7449064b0f0f089f1898a244b6d16 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfit.code.tex" 1393459310 3725 36db4c06798413d051778705f3255eea "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshadows.code.tex" 1203727794 3001 d54bab2f783098ed890fabbeb437b04f "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.arrows.code.tex" 1203727794 527 a8d3e34fbab3dc317cf9b06aa5cdc2e4 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.callouts.code.tex" 1203727794 1158 d6338189706f4587fbc6175c0fb41f17 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.code.tex" 1203727794 607 40dc15d3efcf10f095866a94bd544bc1 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.geometric.code.tex" 1203727794 457 ffe9f8b9d108b5f729fd86c78c63589a "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.misc.code.tex" 1203727794 447 e87a0add254801e837fa6c18f61f340f "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.multipart.code.tex" 1203727794 1004 86af66805a9d0b62bd41ea0796a64d50 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.symbols.code.tex" 1203727794 590 7e11000a24bbee9ae2a4cd0e5d88e58c "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex" 1288312291 11599 d694704a88e2f9007c996d3a6a4d629c "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex" 1393459310 175287 31eb66e838dd5e10589736193a31943c "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.markings.code.tex" 1393459310 5181 c2b736d254ec36204f8fffd5a45bbd41 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.code.tex" 1393459310 31927 7acd27f90dd95ce67ad32166cd0b95ec "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code.tex" 1203727794 2647 defb4a59c2a1d36127a1ac6eebb4a5c1 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex" 1393459310 32969 dbcfd5a7de6a0f7255c333ef60287d59 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.arrows.code.tex" 1288312291 69900 cbd9fafb795a493fb2a3b73713994b78 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.callouts.code.tex" 1393459310 28333 0189c4cfb5044e700e6ba65a32295f01 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.geometric.code.tex" 1288312291 132566 291d42c3b23fdb5c47e51b36a5fea0c4 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.misc.code.tex" 1393459310 37737 ea6cb0b4e615f6048f20ee7153b3cc78 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.multipart.code.tex" 1288312291 49891 e74f8181c57d9359c941b6bee48fccc2 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.symbols.code.tex" 1393459310 90791 0f3e73cae9286c96d9fcb2161cc223bc "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex" 1393459310 454 9e9e7c99f4da4f41698be21eaef4938e "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex" 1393459310 13416 940ea6971d7a65dc440d3479939c66ae "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex" 1393459310 91879 5b3cc8d94c47a5b742393a410f298724 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex" 1393459310 9375 5adc70f722abd29fc250d59e0694b548 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex" 1393459310 21406 80daebd1f9f6a174d8dc77c5bc931bf4 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex" 1393459310 7820 5140d142921f39003e02ccedd072823a "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex" 1288312291 3534 c7f28fbac13616513e513efe93b8569b "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex" 1393459310 3167 7c9394e79aac27db96a92f9b2792b858 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex" 1393459310 9165 99b6966558714c44c0b5ee44ae261ffc "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex" 1288312291 6964 d4b5e82dabddda1c728063bb9c8a22ba "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex" 1288312291 2688 139c6abc86761a6190c2f4bef5d752be "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex" 1393459310 91075 1c1d7a7e8f0f737f72aa8becf0b37136 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex" 1393459310 33289 b041d55e91f7382603e2dca6f9ad188d "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex" 1393459310 7099 f44d505bae6c7c2b933cdd63441db4b9 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex" 1393459310 71902 658cc1e13f73daec4225b8fc1c27600b "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex" 1393459310 20934 2328bd2e04520e1ab077ac4ee13b8935 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex" 1393459310 15785 e0b14c447df00370d2023fd5c9813190 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex" 1393459310 42336 b13cf09dc317c76a2b165a8501d871cf "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg" 1288312291 978 15af626ebd3d4d790aac19170dac04f2 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def" 1393459310 5437 d91f93ed61ecdc57e119849b2d784a0b "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def" 1393459310 11969 518d66d5b5e20471ba00709ef9c2b267 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex" 1393459310 34488 3bab2022cdd1acab0cd383d8a0ad641b "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex" 1203877327 1983 b5994ebbcee17f1ba3d29bb1bd696fcf "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex" 1393459310 7881 d459d6057e13d10ce7a227ae44b7295e "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex" 1393459310 22211 d696ef78c12269178882d218b2cf191d "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex" 1393459310 36194 e194ef4e0b396b531a3891feb4b1cc22 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex" 1393459310 33377 af391d6ad1bfcbe2278e191f48e43ba8 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex" 1393459310 2286 b5c392d27790ca52b8f8e510ef5044e0 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.tex" 1393459310 6833 114eda2cf1d348e0e7e477a1a4dc1941 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex" 1393459310 16384 3fa06861c9a3391a75df39466f49655f "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def" 1393459310 4500 b148f531c7670d59c695787be06a508b "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/xkeyval/keyval.tex" 1403829539 2725 fc34ef3ccb37ba15a640e8fca6190bca "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkeyval.tex" 1417732693 19231 26434a5656c684f5ffb1f26f98006baa "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkvutils.tex" 1403829539 7677 6f5ce7c1124cad7ec57d05b2562bd8fe "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.sty" 1269905706 144 0ca8d67b000b795a4d9ec000e0fd09c7 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.tex" 1381789620 54373 fd4487ae3e45d4074bc89aea1d2b6807 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/base/article.cls" 1428932888 20708 96f8bca6e380179cada1d49716376167 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty" 1428932888 4572 f29f75cfae3acaf4667f1979db655af9 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty" 1428932888 5159 bb529586d444e85eb00179221b678119 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty" 1428932888 5619 3f48adceb9004b3fefe24c2d2df7d98e "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/base/omsenc.dfu" 1428932888 2005 572b09e94d01e22ed7d4000c92b6e220 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/base/ot1enc.dfu" 1428932888 2757 273e079c3d3a9830c5b4fa2a4ce69c51 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo" 1428932888 9179 632e23fed01c842f2eaef1dd9953a446 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.def" 1428932888 9327 bf6addf718ff386725227c5b52941e7e "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.dfu" 1428932888 7617 8f111f916836ef9e09db7ecbcd4e01d6 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/base/utf8.def" 1428932888 6484 2098550b79b15e713b69d9c8845f4437 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/carlisle/scalefnt.sty" 1137109962 1360 df2086bf924b14b72d6121fe9502fcdb "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty" 1428932888 14285 20d80486c4ae98139889d8789596c967 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty" 1428932888 8125 557ab9f1bfa80d369fb45a914aa8a3b4 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty" 1428932888 3439 44bd4a1da7f27787173f2e99116b0a7f "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg" 1254097189 802 7b8c8d72c24d795ed7720e4dfd29bff3 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg" 1279039959 678 4792914a8f45be57bb98413425e4c7af "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg" 1278958963 3563 d35e897cae3b8c6848f6677b73370b54 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/ms/everyshi.sty" 1177890616 3878 6aa7c08ff2621006e0603349e40a30a8 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty" 1303254447 12029 04d7fdf76e0464c23b5aa3a727952d7c "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/oberdiek/grfext.sty" 1335995445 7075 bd0c34fbf1ae8fd1debd2a554e41b2d5 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty" 1335995445 22417 c74ff4af6a1aa2b65d1924020edbbe11 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pdftex-def/pdftex.def" 1306616590 55368 3c8a0d99822330f2dfabc0dfb09ce897 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty" 1393459310 1190 4e20f1d26da9f86ba6a50d7ad16c48d2 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty" 1288312291 410 5bf12ea7330e5f12c445332a4fe9a263 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty" 1203877327 21115 facf03b7dbe5ea2f5f1dce1ac84b5d05 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty" 1203727794 1091 d9163d29def82ee90370c8a63667742c "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty" 1203877327 339 592cf35cba3d400082b8a9a5d0199d70 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgf/math/pgfmath.sty" 1393459310 306 0796eafca5e159e6ec2167a6d22d81b1 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty" 1393459310 443 0b2e781830192df35c0fd357cf13e26e "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgffor.sty" 1393459310 348 8927fde343487e003b01a4c2ca34073b "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty" 1203727794 274 4cad6e665cc93ac2ac979039a94fa1e1 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty" 1203877327 325 2bcd023400636339210573e2b3ee298b "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgfopts/pgfopts.sty" 1405118212 5540 d5c60cf09c59da351aa4023ed084e4eb "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/standalone/standalone.cfg" 1437172902 902 f9a15737aea33182ec1f3542ca20dbfe "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/standalone/standalone.cls" 1437172902 27291 b798d344bcba4430e7f7dc7561c517d5 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/tools/calc.sty" 1428932888 10214 78c09985255ed93018b1db2c4e2f6deb "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty" 1169481954 55224 a43bab84e0ac5e6efcaf9a98bde73a94 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty" 1417732693 4962 9c1069474ff71dbc47d5006555e352d3 "" | ||||
|   "/usr/share/texlive/texmf-dist/web2c/texmf.cnf" 1435377840 31349 7675f8adfbe12aae865d340d35423a49 "" | ||||
|   "/usr/share/texmf/fonts/enc/dvips/lm/lm-ec.enc" 1254938640 2375 baa924870cfb487815765f9094cf3728 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/ec-lmbx9.tfm" 1254938640 12080 8da3d5e88196e4de175949ad7749b42f "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/ec-lmr10.tfm" 1254938640 12056 7e13df7fe4cbce21b072ba7c4f4deb6e "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/ec-lmr9.tfm" 1254938640 12084 b7f5e4c003de6f57f07c7e9fee73a37c "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/ec-lmri9.tfm" 1254938640 17148 ca1ae65757b004f470b8cd636199f6fc "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/ec-lmtt9.tfm" 1254938640 1372 a2ff2d4391a2d6bba15b518acb79e80f "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/lmex10.tfm" 1254938640 992 ce925c9346c7613270a79afbee98c070 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/lmmi5.tfm" 1254938640 1508 198f5b7b99b5769126de3a533f6fc334 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/lmmi6.tfm" 1254938640 1512 94a3fd88c6f27dbd9ecb46987e297a4e "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/lmmi9.tfm" 1254938640 1524 cdf05765c2a8bdb569ea0aa208fb0947 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/lmsy5.tfm" 1254938640 1296 54ed1a711e2303d5282575278e3620b0 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/lmsy6.tfm" 1254938640 1300 b0605d44c16c22d99dc001808e4f24ea "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/lmsy9.tfm" 1254938640 1300 ca37bc0213808d24f74bf4d32f81f80d "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/rm-lmr5.tfm" 1254938640 11804 aefb10c002e6492c25236524a447f969 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/rm-lmr6.tfm" 1254938640 11836 e3b6ce3e601aec94f64a536e7f4224d5 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/rm-lmr9.tfm" 1254938640 11884 c93929a6974dce79eabb778f219d7e18 "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmbx9.pfb" 1254938640 126646 439622e6fd57f388c9979d39c4fce535 "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmr9.pfb" 1254938640 121065 50bbfa703ce7e11638752ef5a6d120c7 "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmri9.pfb" 1254938640 109598 cb570392cb143ca78182169795feed7a "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmtt9.pfb" 1254938640 108480 ee1de99df36ee0a16b36023b9c9d8a58 "" | ||||
|   "/usr/share/texmf/tex/latex/lm/lmodern.sty" 1256929440 1606 c17281c7cff2bbd7ff0173e1433487ec "" | ||||
|   "/usr/share/texmf/tex/latex/lm/omllmm.fd" 1256929440 888 44447a3a3af84a22454ef89500942d93 "" | ||||
|   "/usr/share/texmf/tex/latex/lm/omslmsy.fd" 1256929440 805 af340a8260c447aa315cfc740ff0152f "" | ||||
|   "/usr/share/texmf/tex/latex/lm/omxlmex.fd" 1256929440 566 a94661f7b66063f191960bb7935b6ba2 "" | ||||
|   "/usr/share/texmf/tex/latex/lm/ot1lmr.fd" 1256929440 1880 bae7b659316f7344a86218ad38b01d91 "" | ||||
|   "/usr/share/texmf/tex/latex/lm/t1lmr.fd" 1256929440 1865 afbfccbe7fda9c2dc5078ad7c486bbed "" | ||||
|   "/usr/share/texmf/tex/latex/lm/t1lmtt.fd" 1256929440 2681 354015af3b61e7be30009f084986375a "" | ||||
|   "/usr/share/texmf/web2c/texmf.cnf" 1435377840 31349 7675f8adfbe12aae865d340d35423a49 "" | ||||
|   "/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map" 1448651651 1779312 b2f993ff39f888114b7dddf8751f0ae0 "" | ||||
|   "/var/lib/texmf/web2c/pdftex/pdflatex.fmt" 1448651758 3845440 b767bcfad02834add06449ca1e913284 "" | ||||
|   "diagramme.aux" 1457543826 242 1307d8a02d1e67cd0e2b52e6a2f90ab0 "" | ||||
|   "diagramme.tex" 1457543824 1605 a530e20dcbe7e5739ed4cc25cc5a8215 "" | ||||
|   (generated) | ||||
|   "diagramme.pdf" | ||||
|   "diagramme.log" | ||||
|   "/home/matteo/Développement/projet-cmi/docs/nouveau-diagramme-classe/diagramme.log" | ||||
|   "/home/matteo/Développement/projet-cmi/docs/nouveau-diagramme-classe/diagramme.pdf" | ||||
|   "diagramme.aux" | ||||
|  | @ -1,274 +0,0 @@ | |||
| PWD /home/matteo/Développement/projet-cmi/docs/nouveau-diagramme-classe | ||||
| INPUT /etc/texmf/web2c/texmf.cnf | ||||
| INPUT /usr/share/texmf/web2c/texmf.cnf | ||||
| INPUT /usr/share/texlive/texmf-dist/web2c/texmf.cnf | ||||
| INPUT /var/lib/texmf/web2c/pdftex/pdflatex.fmt | ||||
| INPUT /home/matteo/Développement/projet-cmi/docs/nouveau-diagramme-classe/diagramme.tex | ||||
| OUTPUT /home/matteo/Développement/projet-cmi/docs/nouveau-diagramme-classe/diagramme.log | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/standalone/standalone.cls | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/standalone/standalone.cls | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifluatex.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifluatex.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifluatex.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifpdf.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifpdf.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifpdf.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkeyval.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkvutils.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/xkeyval/keyval.tex | ||||
| INPUT /dev/null | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/standalone/standalone.cfg | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/standalone/standalone.cfg | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/size10.clo | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/size10.clo | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/ms/everyshi.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/ms/everyshi.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pdftex-def/pdftex.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pdftex-def/pdftex.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/infwarerr.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/infwarerr.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/ltxcmds.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/ltxcmds.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgffor.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgffor.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/math/pgfmath.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/math/pgfmath.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/utf8.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/utf8.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/t1enc.dfu | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/t1enc.dfu | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/ot1enc.dfu | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/ot1enc.dfu | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/omsenc.dfu | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/omsenc.dfu | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/t1enc.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/t1enc.def | ||||
| INPUT /usr/share/texlive/texmf-dist/fonts/map/fontname/texfonts.map | ||||
| INPUT /usr/share/texlive/texmf-dist/fonts/tfm/jknappen/ec/ecrm1000.tfm | ||||
| INPUT /usr/share/texmf/tex/latex/lm/lmodern.sty | ||||
| INPUT /usr/share/texmf/tex/latex/lm/lmodern.sty | ||||
| INPUT /home/matteo/texmf/tex/latex/tikz-uml/tikz-uml.sty | ||||
| INPUT /home/matteo/texmf/tex/latex/tikz-uml/tikz-uml.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/tools/calc.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/tools/calc.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgfopts/pgfopts.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgfopts/pgfopts.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybackgrounds.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybackgrounds.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryarrows.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryarrows.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.geometric.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.geometric.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.geometric.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.geometric.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.misc.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.misc.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.misc.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.misc.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.symbols.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.symbols.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.symbols.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.symbols.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.arrows.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.arrows.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.arrows.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.arrows.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.callouts.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.callouts.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.callouts.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.callouts.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.multipart.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.multipart.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.multipart.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.multipart.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfit.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfit.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshadows.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshadows.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfadings.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfadings.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code.tex | ||||
| OUTPUT /home/matteo/Développement/projet-cmi/docs/nouveau-diagramme-classe/diagramme.pdf | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.markings.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.markings.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.markings.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.markings.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/babel-french/frenchb.ldf | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/babel-french/frenchb.ldf | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/babel/babel.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/carlisle/scalefnt.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/carlisle/scalefnt.sty | ||||
| INPUT /home/matteo/Développement/projet-cmi/docs/nouveau-diagramme-classe/diagramme.aux | ||||
| INPUT /home/matteo/Développement/projet-cmi/docs/nouveau-diagramme-classe/diagramme.aux | ||||
| OUTPUT /home/matteo/Développement/projet-cmi/docs/nouveau-diagramme-classe/diagramme.aux | ||||
| INPUT /usr/share/texmf/tex/latex/lm/t1lmr.fd | ||||
| INPUT /usr/share/texmf/tex/latex/lm/t1lmr.fd | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmr10.tfm | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/context/base/supp-pdf.mkii | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/context/base/supp-pdf.mkii | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/grfext.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/grfext.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/etexcmds.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/etexcmds.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmr9.tfm | ||||
| INPUT /usr/share/texmf/tex/latex/lm/ot1lmr.fd | ||||
| INPUT /usr/share/texmf/tex/latex/lm/ot1lmr.fd | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/rm-lmr9.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/rm-lmr6.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/rm-lmr5.tfm | ||||
| INPUT /usr/share/texmf/tex/latex/lm/omllmm.fd | ||||
| INPUT /usr/share/texmf/tex/latex/lm/omllmm.fd | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmmi9.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmmi6.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmmi5.tfm | ||||
| INPUT /usr/share/texmf/tex/latex/lm/omslmsy.fd | ||||
| INPUT /usr/share/texmf/tex/latex/lm/omslmsy.fd | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmsy9.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmsy6.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmsy5.tfm | ||||
| INPUT /usr/share/texmf/tex/latex/lm/omxlmex.fd | ||||
| INPUT /usr/share/texmf/tex/latex/lm/omxlmex.fd | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmex10.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmbx9.tfm | ||||
| INPUT /usr/share/texmf/tex/latex/lm/t1lmtt.fd | ||||
| INPUT /usr/share/texmf/tex/latex/lm/t1lmtt.fd | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmtt9.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmri9.tfm | ||||
| INPUT /var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map | ||||
| INPUT /home/matteo/Développement/projet-cmi/docs/nouveau-diagramme-classe/diagramme.aux | ||||
| INPUT /usr/share/texmf/fonts/enc/dvips/lm/lm-ec.enc | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmbx9.pfb | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmr9.pfb | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmri9.pfb | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmtt9.pfb | ||||
|  | @ -1,849 +0,0 @@ | |||
| This is pdfTeX, Version 3.14159265-2.6-1.40.16 (TeX Live 2015/Debian) (preloaded format=pdflatex 2015.11.27)  9 MAR 2016 18:17 | ||||
| entering extended mode | ||||
|  restricted \write18 enabled. | ||||
|  file:line:error style messages enabled. | ||||
|  %&-line parsing enabled. | ||||
| **diagramme.tex | ||||
| (/home/matteo/Développement/projet-cmi/docs/nouveau-diagramme-classe/diagramme.tex | ||||
| LaTeX2e <2015/01/01> | ||||
| Babel <3.9l> and hyphenation patterns for 79 languages loaded. | ||||
| (/usr/share/texlive/texmf-dist/tex/latex/standalone/standalone.cls | ||||
| Document Class: standalone 2015/07/15 v1.2 Class to compile TeX sub-files standalone | ||||
| (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifluatex.sty | ||||
| Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO) | ||||
| Package ifluatex Info: LuaTeX not detected. | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifpdf.sty | ||||
| Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO) | ||||
| Package ifpdf Info: pdfTeX in PDF mode is detected. | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty | ||||
| Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional | ||||
| ) (/usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty | ||||
| Package: xkeyval 2014/12/03 v2.7a package option processing (HA) | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkeyval.tex (/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkvutils.tex | ||||
| \XKV@toks=\toks14 | ||||
| \XKV@tempa@toks=\toks15 | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/xkeyval/keyval.tex)) | ||||
| \XKV@depth=\count79 | ||||
| File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) | ||||
| )) | ||||
| \sa@internal=\count80 | ||||
| \c@sapage=\count81 | ||||
|  (/usr/share/texlive/texmf-dist/tex/latex/standalone/standalone.cfg | ||||
| File: standalone.cfg 2015/07/15 v1.2 Default configuration file for 'standalone' class | ||||
| ) (/usr/share/texlive/texmf-dist/tex/latex/base/article.cls | ||||
| Document Class: article 2014/09/29 v1.4h Standard LaTeX document class | ||||
| (/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo | ||||
| File: size10.clo 2014/09/29 v1.4h Standard LaTeX file (size option) | ||||
| ) | ||||
| \c@part=\count82 | ||||
| \c@section=\count83 | ||||
| \c@subsection=\count84 | ||||
| \c@subsubsection=\count85 | ||||
| \c@paragraph=\count86 | ||||
| \c@subparagraph=\count87 | ||||
| \c@figure=\count88 | ||||
| \c@table=\count89 | ||||
| \abovecaptionskip=\skip41 | ||||
| \belowcaptionskip=\skip42 | ||||
| \bibindent=\dimen102 | ||||
| ) (/usr/share/texlive/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty (/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty (/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex | ||||
| \pgfutil@everybye=\toks16 | ||||
| \pgfutil@tempdima=\dimen103 | ||||
| \pgfutil@tempdimb=\dimen104 | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.tex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def | ||||
| \pgfutil@abb=\box26 | ||||
|  (/usr/share/texlive/texmf-dist/tex/latex/ms/everyshi.sty | ||||
| Package: everyshi 2001/05/15 v3.00 EveryShipout Package (MS) | ||||
| )) (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex | ||||
| Package: pgfrcs 2013/12/20 v3.0.0 (rcs-revision 1.28) | ||||
| )) | ||||
| Package: pgf 2013/12/18 v3.0.0 (rcs-revision 1.14) | ||||
|  (/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty | ||||
| Package: graphicx 2014/10/28 v1.0g Enhanced LaTeX Graphics (DPC,SPQR) | ||||
|  (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty | ||||
| Package: graphics 2014/10/28 v1.0p Standard LaTeX Graphics (DPC,SPQR) | ||||
|  (/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty | ||||
| Package: trig 1999/03/16 v1.09 sin cos tan (DPC) | ||||
| ) (/usr/share/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg | ||||
| File: graphics.cfg 2010/04/23 v1.9 graphics configuration of TeX Live | ||||
| ) | ||||
| Package graphics Info: Driver file: pdftex.def on input line 94. | ||||
| 
 | ||||
| (/usr/share/texlive/texmf-dist/tex/latex/pdftex-def/pdftex.def | ||||
| File: pdftex.def 2011/05/27 v0.06d Graphics/color for pdfTeX | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/infwarerr.sty | ||||
| Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO) | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ltxcmds.sty | ||||
| Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO) | ||||
| ) | ||||
| \Gread@gobject=\count90 | ||||
| )) | ||||
| \Gin@req@height=\dimen105 | ||||
| \Gin@req@width=\dimen106 | ||||
| ) (/usr/share/texlive/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex | ||||
| Package: pgfsys 2013/11/30 v3.0.0 (rcs-revision 1.47) | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex | ||||
| \pgfkeys@pathtoks=\toks17 | ||||
| \pgfkeys@temptoks=\toks18 | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex | ||||
| \pgfkeys@tmptoks=\toks19 | ||||
| )) | ||||
| \pgf@x=\dimen107 | ||||
| \pgf@y=\dimen108 | ||||
| \pgf@xa=\dimen109 | ||||
| \pgf@ya=\dimen110 | ||||
| \pgf@xb=\dimen111 | ||||
| \pgf@yb=\dimen112 | ||||
| \pgf@xc=\dimen113 | ||||
| \pgf@yc=\dimen114 | ||||
| \w@pgf@writea=\write3 | ||||
| \r@pgf@reada=\read1 | ||||
| \c@pgf@counta=\count91 | ||||
| \c@pgf@countb=\count92 | ||||
| \c@pgf@countc=\count93 | ||||
| \c@pgf@countd=\count94 | ||||
| \t@pgf@toka=\toks20 | ||||
| \t@pgf@tokb=\toks21 | ||||
| \t@pgf@tokc=\toks22 | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg | ||||
| File: pgf.cfg 2008/05/14  (rcs-revision 1.7) | ||||
| ) | ||||
| Driver file for pgf: pgfsys-pdftex.def | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def | ||||
| File: pgfsys-pdftex.def 2013/07/18  (rcs-revision 1.33) | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def | ||||
| File: pgfsys-common-pdf.def 2013/10/10  (rcs-revision 1.13) | ||||
| ))) (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex | ||||
| File: pgfsyssoftpath.code.tex 2013/09/09  (rcs-revision 1.9) | ||||
| \pgfsyssoftpath@smallbuffer@items=\count95 | ||||
| \pgfsyssoftpath@bigbuffer@items=\count96 | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex | ||||
| File: pgfsysprotocol.code.tex 2006/10/16  (rcs-revision 1.4) | ||||
| )) (/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty | ||||
| Package: xcolor 2007/01/21 v2.11 LaTeX color extensions (UK) | ||||
| 
 | ||||
| (/usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg | ||||
| File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive | ||||
| ) | ||||
| Package xcolor Info: Driver file: pdftex.def on input line 225. | ||||
| Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1337. | ||||
| Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1341. | ||||
| Package xcolor Info: Model `RGB' extended on input line 1353. | ||||
| Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1355. | ||||
| Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1356. | ||||
| Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1357. | ||||
| Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1358. | ||||
| Package xcolor Info: Model `Gray' substituted by `gray' on input line 1359. | ||||
| Package xcolor Info: Model `wave' substituted by `hsb' on input line 1360. | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex | ||||
| Package: pgfcore 2010/04/11 v3.0.0 (rcs-revision 1.7) | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex | ||||
| \pgfmath@dimen=\dimen115 | ||||
| \pgfmath@count=\count97 | ||||
| \pgfmath@box=\box27 | ||||
| \pgfmath@toks=\toks23 | ||||
| \pgfmath@stack@operand=\toks24 | ||||
| \pgfmath@stack@operation=\toks25 | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex) | ||||
| (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex))) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex | ||||
| \c@pgfmathroundto@lastzeros=\count98 | ||||
| )) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex | ||||
| File: pgfcorepoints.code.tex 2013/10/07  (rcs-revision 1.27) | ||||
| \pgf@picminx=\dimen116 | ||||
| \pgf@picmaxx=\dimen117 | ||||
| \pgf@picminy=\dimen118 | ||||
| \pgf@picmaxy=\dimen119 | ||||
| \pgf@pathminx=\dimen120 | ||||
| \pgf@pathmaxx=\dimen121 | ||||
| \pgf@pathminy=\dimen122 | ||||
| \pgf@pathmaxy=\dimen123 | ||||
| \pgf@xx=\dimen124 | ||||
| \pgf@xy=\dimen125 | ||||
| \pgf@yx=\dimen126 | ||||
| \pgf@yy=\dimen127 | ||||
| \pgf@zx=\dimen128 | ||||
| \pgf@zy=\dimen129 | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex | ||||
| File: pgfcorepathconstruct.code.tex 2013/10/07  (rcs-revision 1.29) | ||||
| \pgf@path@lastx=\dimen130 | ||||
| \pgf@path@lasty=\dimen131 | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex | ||||
| File: pgfcorepathusage.code.tex 2013/12/13  (rcs-revision 1.23) | ||||
| \pgf@shorten@end@additional=\dimen132 | ||||
| \pgf@shorten@start@additional=\dimen133 | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex | ||||
| File: pgfcorescopes.code.tex 2013/10/09  (rcs-revision 1.44) | ||||
| \pgfpic=\box28 | ||||
| \pgf@hbox=\box29 | ||||
| \pgf@layerbox@main=\box30 | ||||
| \pgf@picture@serial@count=\count99 | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex | ||||
| File: pgfcoregraphicstate.code.tex 2013/09/19  (rcs-revision 1.11) | ||||
| \pgflinewidth=\dimen134 | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex | ||||
| File: pgfcoretransformations.code.tex 2013/10/10  (rcs-revision 1.17) | ||||
| \pgf@pt@x=\dimen135 | ||||
| \pgf@pt@y=\dimen136 | ||||
| \pgf@pt@temp=\dimen137 | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex | ||||
| File: pgfcorequick.code.tex 2008/10/09  (rcs-revision 1.3) | ||||
| ) | ||||
| (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex | ||||
| File: pgfcoreobjects.code.tex 2006/10/11  (rcs-revision 1.2) | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex | ||||
| File: pgfcorepathprocessing.code.tex 2013/09/09  (rcs-revision 1.9) | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex | ||||
| File: pgfcorearrows.code.tex 2013/11/07  (rcs-revision 1.40) | ||||
| \pgfarrowsep=\dimen138 | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex | ||||
| File: pgfcoreshade.code.tex 2013/07/15  (rcs-revision 1.15) | ||||
| \pgf@max=\dimen139 | ||||
| \pgf@sys@shading@range@num=\count100 | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex | ||||
| File: pgfcoreimage.code.tex 2013/07/15  (rcs-revision 1.18) | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex | ||||
| File: pgfcoreexternal.code.tex 2013/07/15  (rcs-revision 1.20) | ||||
| \pgfexternal@startupbox=\box31 | ||||
| )) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex | ||||
| File: pgfcorelayers.code.tex 2013/07/18  (rcs-revision 1.7) | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex | ||||
| File: pgfcoretransparency.code.tex 2013/09/30  (rcs-revision 1.5) | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex | ||||
| File: pgfcorepatterns.code.tex 2013/11/07  (rcs-revision 1.5) | ||||
| ))) (/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex | ||||
| File: pgfmoduleshapes.code.tex 2013/10/31  (rcs-revision 1.34) | ||||
| \pgfnodeparttextbox=\box32 | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex | ||||
| File: pgfmoduleplot.code.tex 2013/07/31  (rcs-revision 1.12) | ||||
| ) (/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty | ||||
| Package: pgfcomp-version-0-65 2007/07/03 v3.0.0 (rcs-revision 1.7) | ||||
| \pgf@nodesepstart=\dimen140 | ||||
| \pgf@nodesepend=\dimen141 | ||||
| ) (/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty | ||||
| Package: pgfcomp-version-1-18 2007/07/23 v3.0.0 (rcs-revision 1.1) | ||||
| )) (/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgffor.sty (/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) (/usr/share/texlive/texmf-dist/tex/latex/pgf/math/pgfmath.sty (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex | ||||
| Package: pgffor 2013/12/13 v3.0.0 (rcs-revision 1.25) | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex) | ||||
| \pgffor@iter=\dimen142 | ||||
| \pgffor@skip=\dimen143 | ||||
| \pgffor@stack=\toks26 | ||||
| \pgffor@toks=\toks27 | ||||
| )) (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex | ||||
| Package: tikz 2013/12/13 v3.0.0 (rcs-revision 1.142) | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex | ||||
| File: pgflibraryplothandlers.code.tex 2013/08/31 v3.0.0 (rcs-revision 1.20) | ||||
| \pgf@plot@mark@count=\count101 | ||||
| \pgfplotmarksize=\dimen144 | ||||
| ) | ||||
| \tikz@lastx=\dimen145 | ||||
| \tikz@lasty=\dimen146 | ||||
| \tikz@lastxsaved=\dimen147 | ||||
| \tikz@lastysaved=\dimen148 | ||||
| \tikzleveldistance=\dimen149 | ||||
| \tikzsiblingdistance=\dimen150 | ||||
| \tikz@figbox=\box33 | ||||
| \tikz@figbox@bg=\box34 | ||||
| \tikz@tempbox=\box35 | ||||
| \tikz@tempbox@bg=\box36 | ||||
| \tikztreelevel=\count102 | ||||
| \tikznumberofchildren=\count103 | ||||
| \tikznumberofcurrentchild=\count104 | ||||
| \tikz@fig@count=\count105 | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex | ||||
| File: pgfmodulematrix.code.tex 2013/09/17  (rcs-revision 1.8) | ||||
| \pgfmatrixcurrentrow=\count106 | ||||
| \pgfmatrixcurrentcolumn=\count107 | ||||
| \pgf@matrix@numberofcolumns=\count108 | ||||
| ) | ||||
| \tikz@expandcount=\count109 | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex | ||||
| File: tikzlibrarytopaths.code.tex 2008/06/17 v3.0.0 (rcs-revision 1.2) | ||||
| ))) | ||||
| \sa@box=\box37 | ||||
| ) (/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty | ||||
| Package: inputenc 2015/03/17 v1.2c Input encoding file | ||||
| \inpenc@prehook=\toks28 | ||||
| \inpenc@posthook=\toks29 | ||||
| 
 | ||||
| (/usr/share/texlive/texmf-dist/tex/latex/base/utf8.def | ||||
| File: utf8.def 2014/09/29 v1.1m UTF-8 support for inputenc | ||||
| Now handling font encoding OML ... | ||||
| ... no UTF-8 mapping file for font encoding OML | ||||
| Now handling font encoding T1 ... | ||||
| ... processing UTF-8 mapping file for font encoding T1 | ||||
|  (/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.dfu | ||||
| File: t1enc.dfu 2014/09/29 v1.1m UTF-8 support for inputenc | ||||
|    defining Unicode char U+00A1 (decimal 161) | ||||
|    defining Unicode char U+00A3 (decimal 163) | ||||
|    defining Unicode char U+00AB (decimal 171) | ||||
|    defining Unicode char U+00BB (decimal 187) | ||||
|    defining Unicode char U+00BF (decimal 191) | ||||
|    defining Unicode char U+00C0 (decimal 192) | ||||
|    defining Unicode char U+00C1 (decimal 193) | ||||
|    defining Unicode char U+00C2 (decimal 194) | ||||
|    defining Unicode char U+00C3 (decimal 195) | ||||
|    defining Unicode char U+00C4 (decimal 196) | ||||
|    defining Unicode char U+00C5 (decimal 197) | ||||
|    defining Unicode char U+00C6 (decimal 198) | ||||
|    defining Unicode char U+00C7 (decimal 199) | ||||
|    defining Unicode char U+00C8 (decimal 200) | ||||
|    defining Unicode char U+00C9 (decimal 201) | ||||
|    defining Unicode char U+00CA (decimal 202) | ||||
|    defining Unicode char U+00CB (decimal 203) | ||||
|    defining Unicode char U+00CC (decimal 204) | ||||
|    defining Unicode char U+00CD (decimal 205) | ||||
|    defining Unicode char U+00CE (decimal 206) | ||||
|    defining Unicode char U+00CF (decimal 207) | ||||
|    defining Unicode char U+00D0 (decimal 208) | ||||
|    defining Unicode char U+00D1 (decimal 209) | ||||
|    defining Unicode char U+00D2 (decimal 210) | ||||
|    defining Unicode char U+00D3 (decimal 211) | ||||
|    defining Unicode char U+00D4 (decimal 212) | ||||
|    defining Unicode char U+00D5 (decimal 213) | ||||
|    defining Unicode char U+00D6 (decimal 214) | ||||
|    defining Unicode char U+00D8 (decimal 216) | ||||
|    defining Unicode char U+00D9 (decimal 217) | ||||
|    defining Unicode char U+00DA (decimal 218) | ||||
|    defining Unicode char U+00DB (decimal 219) | ||||
|    defining Unicode char U+00DC (decimal 220) | ||||
|    defining Unicode char U+00DD (decimal 221) | ||||
|    defining Unicode char U+00DE (decimal 222) | ||||
|    defining Unicode char U+00DF (decimal 223) | ||||
|    defining Unicode char U+00E0 (decimal 224) | ||||
|    defining Unicode char U+00E1 (decimal 225) | ||||
|    defining Unicode char U+00E2 (decimal 226) | ||||
|    defining Unicode char U+00E3 (decimal 227) | ||||
|    defining Unicode char U+00E4 (decimal 228) | ||||
|    defining Unicode char U+00E5 (decimal 229) | ||||
|    defining Unicode char U+00E6 (decimal 230) | ||||
|    defining Unicode char U+00E7 (decimal 231) | ||||
|    defining Unicode char U+00E8 (decimal 232) | ||||
|    defining Unicode char U+00E9 (decimal 233) | ||||
|    defining Unicode char U+00EA (decimal 234) | ||||
|    defining Unicode char U+00EB (decimal 235) | ||||
|    defining Unicode char U+00EC (decimal 236) | ||||
|    defining Unicode char U+00ED (decimal 237) | ||||
|    defining Unicode char U+00EE (decimal 238) | ||||
|    defining Unicode char U+00EF (decimal 239) | ||||
|    defining Unicode char U+00F0 (decimal 240) | ||||
|    defining Unicode char U+00F1 (decimal 241) | ||||
|    defining Unicode char U+00F2 (decimal 242) | ||||
|    defining Unicode char U+00F3 (decimal 243) | ||||
|    defining Unicode char U+00F4 (decimal 244) | ||||
|    defining Unicode char U+00F5 (decimal 245) | ||||
|    defining Unicode char U+00F6 (decimal 246) | ||||
|    defining Unicode char U+00F8 (decimal 248) | ||||
|    defining Unicode char U+00F9 (decimal 249) | ||||
|    defining Unicode char U+00FA (decimal 250) | ||||
|    defining Unicode char U+00FB (decimal 251) | ||||
|    defining Unicode char U+00FC (decimal 252) | ||||
|    defining Unicode char U+00FD (decimal 253) | ||||
|    defining Unicode char U+00FE (decimal 254) | ||||
|    defining Unicode char U+00FF (decimal 255) | ||||
|    defining Unicode char U+0102 (decimal 258) | ||||
|    defining Unicode char U+0103 (decimal 259) | ||||
|    defining Unicode char U+0104 (decimal 260) | ||||
|    defining Unicode char U+0105 (decimal 261) | ||||
|    defining Unicode char U+0106 (decimal 262) | ||||
|    defining Unicode char U+0107 (decimal 263) | ||||
|    defining Unicode char U+010C (decimal 268) | ||||
|    defining Unicode char U+010D (decimal 269) | ||||
|    defining Unicode char U+010E (decimal 270) | ||||
|    defining Unicode char U+010F (decimal 271) | ||||
|    defining Unicode char U+0110 (decimal 272) | ||||
|    defining Unicode char U+0111 (decimal 273) | ||||
|    defining Unicode char U+0118 (decimal 280) | ||||
|    defining Unicode char U+0119 (decimal 281) | ||||
|    defining Unicode char U+011A (decimal 282) | ||||
|    defining Unicode char U+011B (decimal 283) | ||||
|    defining Unicode char U+011E (decimal 286) | ||||
|    defining Unicode char U+011F (decimal 287) | ||||
|    defining Unicode char U+0130 (decimal 304) | ||||
|    defining Unicode char U+0131 (decimal 305) | ||||
|    defining Unicode char U+0132 (decimal 306) | ||||
|    defining Unicode char U+0133 (decimal 307) | ||||
|    defining Unicode char U+0139 (decimal 313) | ||||
|    defining Unicode char U+013A (decimal 314) | ||||
|    defining Unicode char U+013D (decimal 317) | ||||
|    defining Unicode char U+013E (decimal 318) | ||||
|    defining Unicode char U+0141 (decimal 321) | ||||
|    defining Unicode char U+0142 (decimal 322) | ||||
|    defining Unicode char U+0143 (decimal 323) | ||||
|    defining Unicode char U+0144 (decimal 324) | ||||
|    defining Unicode char U+0147 (decimal 327) | ||||
|    defining Unicode char U+0148 (decimal 328) | ||||
|    defining Unicode char U+014A (decimal 330) | ||||
|    defining Unicode char U+014B (decimal 331) | ||||
|    defining Unicode char U+0150 (decimal 336) | ||||
|    defining Unicode char U+0151 (decimal 337) | ||||
|    defining Unicode char U+0152 (decimal 338) | ||||
|    defining Unicode char U+0153 (decimal 339) | ||||
|    defining Unicode char U+0154 (decimal 340) | ||||
|    defining Unicode char U+0155 (decimal 341) | ||||
|    defining Unicode char U+0158 (decimal 344) | ||||
|    defining Unicode char U+0159 (decimal 345) | ||||
|    defining Unicode char U+015A (decimal 346) | ||||
|    defining Unicode char U+015B (decimal 347) | ||||
|    defining Unicode char U+015E (decimal 350) | ||||
|    defining Unicode char U+015F (decimal 351) | ||||
|    defining Unicode char U+0160 (decimal 352) | ||||
|    defining Unicode char U+0161 (decimal 353) | ||||
|    defining Unicode char U+0162 (decimal 354) | ||||
|    defining Unicode char U+0163 (decimal 355) | ||||
|    defining Unicode char U+0164 (decimal 356) | ||||
|    defining Unicode char U+0165 (decimal 357) | ||||
|    defining Unicode char U+016E (decimal 366) | ||||
|    defining Unicode char U+016F (decimal 367) | ||||
|    defining Unicode char U+0170 (decimal 368) | ||||
|    defining Unicode char U+0171 (decimal 369) | ||||
|    defining Unicode char U+0178 (decimal 376) | ||||
|    defining Unicode char U+0179 (decimal 377) | ||||
|    defining Unicode char U+017A (decimal 378) | ||||
|    defining Unicode char U+017B (decimal 379) | ||||
|    defining Unicode char U+017C (decimal 380) | ||||
|    defining Unicode char U+017D (decimal 381) | ||||
|    defining Unicode char U+017E (decimal 382) | ||||
|    defining Unicode char U+200C (decimal 8204) | ||||
|    defining Unicode char U+2013 (decimal 8211) | ||||
|    defining Unicode char U+2014 (decimal 8212) | ||||
|    defining Unicode char U+2018 (decimal 8216) | ||||
|    defining Unicode char U+2019 (decimal 8217) | ||||
|    defining Unicode char U+201A (decimal 8218) | ||||
|    defining Unicode char U+201C (decimal 8220) | ||||
|    defining Unicode char U+201D (decimal 8221) | ||||
|    defining Unicode char U+201E (decimal 8222) | ||||
|    defining Unicode char U+2030 (decimal 8240) | ||||
|    defining Unicode char U+2031 (decimal 8241) | ||||
|    defining Unicode char U+2039 (decimal 8249) | ||||
|    defining Unicode char U+203A (decimal 8250) | ||||
|    defining Unicode char U+2423 (decimal 9251) | ||||
| ) | ||||
| Now handling font encoding OT1 ... | ||||
| ... processing UTF-8 mapping file for font encoding OT1 | ||||
|  (/usr/share/texlive/texmf-dist/tex/latex/base/ot1enc.dfu | ||||
| File: ot1enc.dfu 2014/09/29 v1.1m UTF-8 support for inputenc | ||||
|    defining Unicode char U+00A1 (decimal 161) | ||||
|    defining Unicode char U+00A3 (decimal 163) | ||||
|    defining Unicode char U+00B8 (decimal 184) | ||||
|    defining Unicode char U+00BF (decimal 191) | ||||
|    defining Unicode char U+00C5 (decimal 197) | ||||
|    defining Unicode char U+00C6 (decimal 198) | ||||
|    defining Unicode char U+00D8 (decimal 216) | ||||
|    defining Unicode char U+00DF (decimal 223) | ||||
|    defining Unicode char U+00E6 (decimal 230) | ||||
|    defining Unicode char U+00EC (decimal 236) | ||||
|    defining Unicode char U+00ED (decimal 237) | ||||
|    defining Unicode char U+00EE (decimal 238) | ||||
|    defining Unicode char U+00EF (decimal 239) | ||||
|    defining Unicode char U+00F8 (decimal 248) | ||||
|    defining Unicode char U+0131 (decimal 305) | ||||
|    defining Unicode char U+0141 (decimal 321) | ||||
|    defining Unicode char U+0142 (decimal 322) | ||||
|    defining Unicode char U+0152 (decimal 338) | ||||
|    defining Unicode char U+0153 (decimal 339) | ||||
|    defining Unicode char U+2013 (decimal 8211) | ||||
|    defining Unicode char U+2014 (decimal 8212) | ||||
|    defining Unicode char U+2018 (decimal 8216) | ||||
|    defining Unicode char U+2019 (decimal 8217) | ||||
|    defining Unicode char U+201C (decimal 8220) | ||||
|    defining Unicode char U+201D (decimal 8221) | ||||
| ) | ||||
| Now handling font encoding OMS ... | ||||
| ... processing UTF-8 mapping file for font encoding OMS | ||||
|  (/usr/share/texlive/texmf-dist/tex/latex/base/omsenc.dfu | ||||
| File: omsenc.dfu 2014/09/29 v1.1m UTF-8 support for inputenc | ||||
|    defining Unicode char U+00A7 (decimal 167) | ||||
|    defining Unicode char U+00B6 (decimal 182) | ||||
|    defining Unicode char U+00B7 (decimal 183) | ||||
|    defining Unicode char U+2020 (decimal 8224) | ||||
|    defining Unicode char U+2021 (decimal 8225) | ||||
|    defining Unicode char U+2022 (decimal 8226) | ||||
| ) | ||||
| Now handling font encoding OMX ... | ||||
| ... no UTF-8 mapping file for font encoding OMX | ||||
| Now handling font encoding U ... | ||||
| ... no UTF-8 mapping file for font encoding U | ||||
|    defining Unicode char U+00A9 (decimal 169) | ||||
|    defining Unicode char U+00AA (decimal 170) | ||||
|    defining Unicode char U+00AE (decimal 174) | ||||
|    defining Unicode char U+00BA (decimal 186) | ||||
|    defining Unicode char U+02C6 (decimal 710) | ||||
|    defining Unicode char U+02DC (decimal 732) | ||||
|    defining Unicode char U+200C (decimal 8204) | ||||
|    defining Unicode char U+2026 (decimal 8230) | ||||
|    defining Unicode char U+2122 (decimal 8482) | ||||
|    defining Unicode char U+2423 (decimal 9251) | ||||
| )) (/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty | ||||
| Package: fontenc 2005/09/27 v1.99g Standard LaTeX package | ||||
|  (/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.def | ||||
| File: t1enc.def 2005/09/27 v1.99g Standard LaTeX file | ||||
| LaTeX Font Info:    Redeclaring font encoding T1 on input line 48. | ||||
| )) (/usr/share/texmf/tex/latex/lm/lmodern.sty | ||||
| Package: lmodern 2009/10/30 v1.6 Latin Modern Fonts | ||||
| LaTeX Font Info:    Overwriting symbol font `operators' in version `normal' | ||||
| (Font)                  OT1/cmr/m/n --> OT1/lmr/m/n on input line 22. | ||||
| LaTeX Font Info:    Overwriting symbol font `letters' in version `normal' | ||||
| (Font)                  OML/cmm/m/it --> OML/lmm/m/it on input line 23. | ||||
| LaTeX Font Info:    Overwriting symbol font `symbols' in version `normal' | ||||
| (Font)                  OMS/cmsy/m/n --> OMS/lmsy/m/n on input line 24. | ||||
| LaTeX Font Info:    Overwriting symbol font `largesymbols' in version `normal' | ||||
| (Font)                  OMX/cmex/m/n --> OMX/lmex/m/n on input line 25. | ||||
| LaTeX Font Info:    Overwriting symbol font `operators' in version `bold' | ||||
| (Font)                  OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 26. | ||||
| LaTeX Font Info:    Overwriting symbol font `letters' in version `bold' | ||||
| (Font)                  OML/cmm/b/it --> OML/lmm/b/it on input line 27. | ||||
| LaTeX Font Info:    Overwriting symbol font `symbols' in version `bold' | ||||
| (Font)                  OMS/cmsy/b/n --> OMS/lmsy/b/n on input line 28. | ||||
| LaTeX Font Info:    Overwriting symbol font `largesymbols' in version `bold' | ||||
| (Font)                  OMX/cmex/m/n --> OMX/lmex/m/n on input line 29. | ||||
| LaTeX Font Info:    Overwriting math alphabet `\mathbf' in version `normal' | ||||
| (Font)                  OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 31. | ||||
| LaTeX Font Info:    Overwriting math alphabet `\mathsf' in version `normal' | ||||
| (Font)                  OT1/cmss/m/n --> OT1/lmss/m/n on input line 32. | ||||
| LaTeX Font Info:    Overwriting math alphabet `\mathit' in version `normal' | ||||
| (Font)                  OT1/cmr/m/it --> OT1/lmr/m/it on input line 33. | ||||
| LaTeX Font Info:    Overwriting math alphabet `\mathtt' in version `normal' | ||||
| (Font)                  OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 34. | ||||
| LaTeX Font Info:    Overwriting math alphabet `\mathbf' in version `bold' | ||||
| (Font)                  OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 35. | ||||
| LaTeX Font Info:    Overwriting math alphabet `\mathsf' in version `bold' | ||||
| (Font)                  OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 36. | ||||
| LaTeX Font Info:    Overwriting math alphabet `\mathit' in version `bold' | ||||
| (Font)                  OT1/cmr/bx/it --> OT1/lmr/bx/it on input line 37. | ||||
| LaTeX Font Info:    Overwriting math alphabet `\mathtt' in version `bold' | ||||
| (Font)                  OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 38. | ||||
| ) (/home/matteo/texmf/tex/latex/tikz-uml/tikz-uml.sty | ||||
| Package: tikz-uml 2011/01/26 | ||||
|  (/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty | ||||
| Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC) | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.sty (/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.tex | ||||
| \@xs@message=\write4 | ||||
| \integerpart=\count110 | ||||
| \decimalpart=\count111 | ||||
| ) | ||||
| Package: xstring 2013/10/13  v1.7c  String manipulations (C Tellechea) | ||||
| ) (/usr/share/texlive/texmf-dist/tex/latex/tools/calc.sty | ||||
| Package: calc 2014/10/28 v4.3 Infix arithmetic (KKT,FJ) | ||||
| \calc@Acount=\count112 | ||||
| \calc@Bcount=\count113 | ||||
| \calc@Adimen=\dimen151 | ||||
| \calc@Bdimen=\dimen152 | ||||
| \calc@Askip=\skip43 | ||||
| \calc@Bskip=\skip44 | ||||
| LaTeX Info: Redefining \setlength on input line 80. | ||||
| LaTeX Info: Redefining \addtolength on input line 81. | ||||
| \calc@Ccount=\count114 | ||||
| \calc@Cskip=\skip45 | ||||
| ) (/usr/share/texlive/texmf-dist/tex/latex/pgfopts/pgfopts.sty | ||||
| Package: pgfopts 2014/07/10 v2.1a LaTeX package options with pgfkeys | ||||
| \pgfopts@list@add@a@toks=\toks30 | ||||
| \pgfopts@list@add@b@toks=\toks31 | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybackgrounds.code.tex | ||||
| File: tikzlibrarybackgrounds.code.tex 2013/07/18 v3.0.0 (rcs-revision 1.3) | ||||
| \pgf@layerbox@background=\box38 | ||||
| \pgf@layerboxsaved@background=\box39 | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryarrows.code.tex | ||||
| File: tikzlibraryarrows.code.tex 2008/01/09 v3.0.0 (rcs-revision 1.1) | ||||
| 
 | ||||
| (/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.code.tex | ||||
| File: pgflibraryarrows.code.tex 2013/09/23 v3.0.0 (rcs-revision 1.16) | ||||
| \arrowsize=\dimen153 | ||||
| )) (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.code.tex | ||||
| File: tikzlibraryshapes.code.tex 2008/01/09 v3.0.0 (rcs-revision 1.1) | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.geometric.code.tex | ||||
| File: tikzlibraryshapes.geometric.code.tex 2008/01/09 v3.0.0 (rcs-revision 1.1) | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.geometric.code.tex | ||||
| File: pgflibraryshapes.geometric.code.tex 2008/06/26 v3.0.0 (rcs-revision 1.1) | ||||
| )) (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.misc.code.tex | ||||
| File: tikzlibraryshapes.misc.code.tex 2008/01/09 v3.0.0 (rcs-revision 1.1) | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.misc.code.tex | ||||
| File: pgflibraryshapes.misc.code.tex 2013/07/18 v3.0.0 (rcs-revision 1.5) | ||||
| )) (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.symbols.code.tex | ||||
| File: tikzlibraryshapes.symbols.code.tex 2008/01/09 v3.0.0 (rcs-revision 1.1) | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.symbols.code.tex | ||||
| File: pgflibraryshapes.symbols.code.tex 2013/09/11 v3.0.0 (rcs-revision 1.6) | ||||
| )) (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.arrows.code.tex | ||||
| File: tikzlibraryshapes.arrows.code.tex 2008/01/09 v3.0.0 (rcs-revision 1.1) | ||||
| 
 | ||||
| (/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.arrows.code.tex | ||||
| File: pgflibraryshapes.arrows.code.tex 2008/06/26 v3.0.0 (rcs-revision 1.1) | ||||
| )) (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.callouts.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.callouts.code.tex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.multipart.code.tex | ||||
| File: tikzlibraryshapes.multipart.code.tex 2008/01/09 v3.0.0 (rcs-revision 1.1) | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.multipart.code.tex | ||||
| File: pgflibraryshapes.multipart.code.tex 2010/01/07 v3.0.0 (rcs-revision 1.2) | ||||
| \pgfnodepartlowerbox=\box40 | ||||
| \pgfnodeparttwobox=\box41 | ||||
| \pgfnodepartthreebox=\box42 | ||||
| \pgfnodepartfourbox=\box43 | ||||
| \pgfnodeparttwentybox=\box44 | ||||
| \pgfnodepartnineteenbox=\box45 | ||||
| \pgfnodeparteighteenbox=\box46 | ||||
| \pgfnodepartseventeenbox=\box47 | ||||
| \pgfnodepartsixteenbox=\box48 | ||||
| \pgfnodepartfifteenbox=\box49 | ||||
| \pgfnodepartfourteenbox=\box50 | ||||
| \pgfnodepartthirteenbox=\box51 | ||||
| \pgfnodeparttwelvebox=\box52 | ||||
| \pgfnodepartelevenbox=\box53 | ||||
| \pgfnodeparttenbox=\box54 | ||||
| \pgfnodepartninebox=\box55 | ||||
| \pgfnodeparteightbox=\box56 | ||||
| \pgfnodepartsevenbox=\box57 | ||||
| \pgfnodepartsixbox=\box58 | ||||
| \pgfnodepartfivebox=\box59 | ||||
| ))) (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfit.code.tex | ||||
| File: tikzlibraryfit.code.tex 2013/07/12 v3.0.0 (rcs-revision 1.5) | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshadows.code.tex | ||||
| File: tikzlibraryshadows.code.tex 2008/01/13 v3.0.0 (rcs-revision 1.3) | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfadings.code.tex | ||||
| File: tikzlibraryfadings.code.tex 2009/11/15 v3.0.0 (rcs-revision 1.2) | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code.tex | ||||
| File: pgflibraryfadings.code.tex 2008/02/07 v3.0.0 (rcs-revision 1.3) | ||||
| ))) | ||||
| (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.markings.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex | ||||
| \pgfdecoratedcompleteddistance=\dimen154 | ||||
| \pgfdecoratedremainingdistance=\dimen155 | ||||
| \pgfdecoratedinputsegmentcompleteddistance=\dimen156 | ||||
| \pgfdecoratedinputsegmentremainingdistance=\dimen157 | ||||
| \pgf@decorate@distancetomove=\dimen158 | ||||
| \pgf@decorate@repeatstate=\count115 | ||||
| \pgfdecorationsegmentamplitude=\dimen159 | ||||
| \pgfdecorationsegmentlength=\dimen160 | ||||
| ) | ||||
| \tikz@lib@dec@box=\box60 | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.markings.code.tex)) | ||||
| \c@tikzumlPackageLayers=\count116 | ||||
| \pgf@layerbox@package0=\box61 | ||||
| \pgf@layerboxsaved@package0=\box62 | ||||
| \pgf@layerbox@package1=\box63 | ||||
| \pgf@layerboxsaved@package1=\box64 | ||||
| \pgf@layerbox@package2=\box65 | ||||
| \pgf@layerboxsaved@package2=\box66 | ||||
| \pgf@layerbox@package3=\box67 | ||||
| \pgf@layerboxsaved@package3=\box68 | ||||
| \c@tikzumlFragmentLayers=\count117 | ||||
| \pgf@layerbox@fragment0=\box69 | ||||
| \pgf@layerboxsaved@fragment0=\box70 | ||||
| \pgf@layerbox@fragment1=\box71 | ||||
| \pgf@layerboxsaved@fragment1=\box72 | ||||
| \pgf@layerbox@fragment2=\box73 | ||||
| \pgf@layerboxsaved@fragment2=\box74 | ||||
| \pgf@layerbox@fragment3=\box75 | ||||
| \pgf@layerboxsaved@fragment3=\box76 | ||||
| \c@tikzumlStateLayers=\count118 | ||||
| \pgf@layerbox@state0=\box77 | ||||
| \pgf@layerboxsaved@state0=\box78 | ||||
| \pgf@layerbox@state1=\box79 | ||||
| \pgf@layerboxsaved@state1=\box80 | ||||
| \pgf@layerbox@state2=\box81 | ||||
| \pgf@layerboxsaved@state2=\box82 | ||||
| \pgf@layerbox@state3=\box83 | ||||
| \pgf@layerboxsaved@state3=\box84 | ||||
| \c@tikzumlComponentLayers=\count119 | ||||
| \pgf@layerbox@component0=\box85 | ||||
| \pgf@layerboxsaved@component0=\box86 | ||||
| \pgf@layerbox@component1=\box87 | ||||
| \pgf@layerboxsaved@component1=\box88 | ||||
| \pgf@layerbox@component2=\box89 | ||||
| \pgf@layerboxsaved@component2=\box90 | ||||
| \pgf@layerbox@component3=\box91 | ||||
| \pgf@layerboxsaved@component3=\box92 | ||||
| \pgf@layerbox@lifelines=\box93 | ||||
| \pgf@layerboxsaved@lifelines=\box94 | ||||
| \pgf@layerbox@activity=\box95 | ||||
| \pgf@layerboxsaved@activity=\box96 | ||||
| \pgf@layerbox@connections=\box97 | ||||
| \pgf@layerboxsaved@connections=\box98 | ||||
| \c@tikzumlPackageClassNum=\count120 | ||||
| \c@tikzumlPackageSubPackageNum=\count121 | ||||
| \c@tikzumlRelationNum=\count122 | ||||
| \c@tikzumlNoteNum=\count123 | ||||
| \c@pos=\count124 | ||||
| \c@posT=\count125 | ||||
| \c@posStereo=\count126 | ||||
| \c@tikzumlPackageLevel=\count127 | ||||
| \c@tikzumlSystemUseCaseNum=\count128 | ||||
| \c@tikzumlSystemLevel=\count129 | ||||
| \c@tikzumlUseCaseNum=\count130 | ||||
| \c@tikzumlActorNum=\count131 | ||||
| \c@tikzumlStateJoinNum=\count132 | ||||
| \c@tikzumlStateDecisionNum=\count133 | ||||
| \c@tikzumlStateInitialNum=\count134 | ||||
| \c@tikzumlStateFinalNum=\count135 | ||||
| \c@tikzumlStateEnterNum=\count136 | ||||
| \c@tikzumlStateExitNum=\count137 | ||||
| \c@tikzumlStateEndNum=\count138 | ||||
| \c@tikzumlStateHistoryNum=\count139 | ||||
| \c@tikzumlStateDeepHistoryNum=\count140 | ||||
| \c@tikzumlStateLevel=\count141 | ||||
| \c@tikzumlStateSubStateNum=\count142 | ||||
| \c@tikzumlStateText=\count143 | ||||
| \c@tikzumlObjectNum=\count144 | ||||
| \c@tikzumlCallLevel=\count145 | ||||
| \c@tikzumlCallNum=\count146 | ||||
| \c@tikzumlFragmentLevel=\count147 | ||||
| \c@tikzumlFragmentLevelNum=\count148 | ||||
| \c@tikzumlFragmentNum=\count149 | ||||
| \c@tikzumlFragmentPartNum=\count150 | ||||
| \c@tikzumlCallStartFragmentNum=\count151 | ||||
| \c@tikzumlCallEndFragmentNum=\count152 | ||||
| \tikzumlCall@xa=\skip46 | ||||
| \tikzumlCall@xb=\skip47 | ||||
| \c@tikzumlComponentLevel=\count153 | ||||
| \c@tikzumlComponentSubComponentNum=\count154 | ||||
| \c@tikzumlConnectorNum=\count155 | ||||
| \tikzuml@AC@xa=\skip48 | ||||
| \tikzuml@AC@ya=\skip49 | ||||
| \tikzuml@AC@xb=\skip50 | ||||
| \tikzuml@AC@yb=\skip51 | ||||
| \tikzuml@AC@xi=\skip52 | ||||
| \tikzuml@AC@yi=\skip53 | ||||
| \tikzuml@AC@xic=\skip54 | ||||
| \tikzuml@AC@yic=\skip55 | ||||
| \tikzuml@AC@xio=\skip56 | ||||
| \tikzuml@AC@yio=\skip57 | ||||
| \tikzuml@AC@AB=\skip58 | ||||
| \tikzuml@AC@lambda=\skip59 | ||||
| \tikzuml@AC@xtrc=\skip60 | ||||
| \tikzuml@AC@ytrc=\skip61 | ||||
| \tikzuml@AC@xtlc=\skip62 | ||||
| \tikzuml@AC@ytlc=\skip63 | ||||
| \tikzuml@AC@xblc=\skip64 | ||||
| \tikzuml@AC@yblc=\skip65 | ||||
| \tikzuml@AC@xbrc=\skip66 | ||||
| \tikzuml@AC@ybrc=\skip67 | ||||
| \tikzuml@AC@middleArm=\skip68 | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty | ||||
| Package: babel 2014/09/25 3.9l The Babel package | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/babel-french/frenchb.ldf | ||||
| Language: frenchb 2015/06/26 v3.1g French support from the babel system | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/babel/babel.def | ||||
| File: babel.def 2014/09/25 3.9l Babel common definitions | ||||
| \babel@savecnt=\count156 | ||||
| \U@D=\dimen161 | ||||
| ) | ||||
| \l@acadian = a dialect from \language\l@french  | ||||
| \l@canadien = a dialect from \language\l@french  | ||||
| \FBcolonskip=\skip69 | ||||
| \FBthinskip=\skip70 | ||||
| \FB@interchartokenstateORI=\count157 | ||||
| Package babel Info: Making : an active character on input line 353. | ||||
| Package babel Info: Making ; an active character on input line 354. | ||||
| Package babel Info: Making ! an active character on input line 355. | ||||
| Package babel Info: Making ? an active character on input line 356. | ||||
| \FBguillskip=\skip71 | ||||
| \FBguill@level=\count158 | ||||
| \FB@Mht=\dimen162 | ||||
| \std@mcc=\count159 | ||||
| \dec@mcc=\count160 | ||||
| \listindentFB=\skip72 | ||||
| \labelwidthFB=\skip73 | ||||
| \leftmarginFB=\skip74 | ||||
| \parindentFFN=\dimen163 | ||||
| )) (/usr/share/texlive/texmf-dist/tex/latex/carlisle/scalefnt.sty) (/home/matteo/Développement/projet-cmi/docs/nouveau-diagramme-classe/diagramme.aux) | ||||
| \openout1 = `diagramme.aux'. | ||||
| 
 | ||||
| LaTeX Font Info:    Checking defaults for OML/cmm/m/it on input line 10. | ||||
| LaTeX Font Info:    ... okay on input line 10. | ||||
| LaTeX Font Info:    Checking defaults for T1/cmr/m/n on input line 10. | ||||
| LaTeX Font Info:    ... okay on input line 10. | ||||
| LaTeX Font Info:    Checking defaults for OT1/cmr/m/n on input line 10. | ||||
| LaTeX Font Info:    ... okay on input line 10. | ||||
| LaTeX Font Info:    Checking defaults for OMS/cmsy/m/n on input line 10. | ||||
| LaTeX Font Info:    ... okay on input line 10. | ||||
| LaTeX Font Info:    Checking defaults for OMX/cmex/m/n on input line 10. | ||||
| LaTeX Font Info:    ... okay on input line 10. | ||||
| LaTeX Font Info:    Checking defaults for U/cmr/m/n on input line 10. | ||||
| LaTeX Font Info:    ... okay on input line 10. | ||||
| LaTeX Font Info:    Try loading font information for T1+lmr on input line 10. | ||||
|  (/usr/share/texmf/tex/latex/lm/t1lmr.fd | ||||
| File: t1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern | ||||
| ) ABD: EveryShipout initializing macros (/usr/share/texlive/texmf-dist/tex/context/base/supp-pdf.mkii | ||||
| [Loading MPS to PDF converter (version 2006.09.02).] | ||||
| \scratchcounter=\count161 | ||||
| \scratchdimen=\dimen164 | ||||
| \scratchbox=\box99 | ||||
| \nofMPsegments=\count162 | ||||
| \nofMParguments=\count163 | ||||
| \everyMPshowfont=\toks32 | ||||
| \MPscratchCnt=\count164 | ||||
| \MPscratchDim=\dimen165 | ||||
| \MPnumerator=\count165 | ||||
| \makeMPintoPDFobject=\count166 | ||||
| \everyMPtoPDFconversion=\toks33 | ||||
| ) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty | ||||
| Package: pdftexcmds 2011/11/29 v0.20 Utility functions of pdfTeX for LuaTeX (HO) | ||||
| Package pdftexcmds Info: LuaTeX not detected. | ||||
| Package pdftexcmds Info: \pdf@primitive is available. | ||||
| Package pdftexcmds Info: \pdf@ifprimitive is available. | ||||
| Package pdftexcmds Info: \pdfdraftmode found. | ||||
| ) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty | ||||
| Package: epstopdf-base 2010/02/09 v2.5 Base part for package epstopdf | ||||
|  (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/grfext.sty | ||||
| Package: grfext 2010/08/19 v1.1 Manage graphics extensions (HO) | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty | ||||
| Package: kvdefinekeys 2011/04/07 v1.3 Define keys (HO) | ||||
| )) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty | ||||
| Package: kvoptions 2011/06/30 v3.11 Key value format for package options (HO) | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty | ||||
| Package: kvsetkeys 2012/04/25 v1.16 Key value parser (HO) | ||||
|  (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/etexcmds.sty | ||||
| Package: etexcmds 2011/02/16 v1.5 Avoid name clashes with e-TeX commands (HO) | ||||
| Package etexcmds Info: Could not find \expanded. | ||||
| (etexcmds)             That can mean that you are not using pdfTeX 1.50 or | ||||
| (etexcmds)             that some package has redefined \expanded. | ||||
| (etexcmds)             In the latter case, load this package earlier. | ||||
| ))) | ||||
| Package grfext Info: Graphics extension search list: | ||||
| (grfext)             [.png,.pdf,.jpg,.mps,.jpeg,.jbig2,.jb2,.PNG,.PDF,.JPG,.JPEG,.JBIG2,.JB2,.eps] | ||||
| (grfext)             \AppendGraphicsExtensions on input line 452. | ||||
|  (/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg | ||||
| File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Live | ||||
| )) | ||||
| LaTeX Info: Redefining \degres on input line 10. | ||||
| LaTeX Info: Redefining \dots on input line 10. | ||||
| LaTeX Info: Redefining \up on input line 10. | ||||
| LaTeX Font Info:    Try loading font information for OT1+lmr on input line 20. | ||||
|  (/usr/share/texmf/tex/latex/lm/ot1lmr.fd | ||||
| File: ot1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern | ||||
| ) | ||||
| LaTeX Font Info:    Try loading font information for OML+lmm on input line 20. | ||||
|  (/usr/share/texmf/tex/latex/lm/omllmm.fd | ||||
| File: omllmm.fd 2009/10/30 v1.6 Font defs for Latin Modern | ||||
| ) | ||||
| LaTeX Font Info:    Try loading font information for OMS+lmsy on input line 20. | ||||
|  (/usr/share/texmf/tex/latex/lm/omslmsy.fd | ||||
| File: omslmsy.fd 2009/10/30 v1.6 Font defs for Latin Modern | ||||
| ) | ||||
| LaTeX Font Info:    Try loading font information for OMX+lmex on input line 20. | ||||
|  (/usr/share/texmf/tex/latex/lm/omxlmex.fd | ||||
| File: omxlmex.fd 2009/10/30 v1.6 Font defs for Latin Modern | ||||
| ) | ||||
| LaTeX Font Info:    External font `lmex10' loaded for size | ||||
| (Font)              <9> on input line 20. | ||||
| LaTeX Font Info:    External font `lmex10' loaded for size | ||||
| (Font)              <6> on input line 20. | ||||
| LaTeX Font Info:    External font `lmex10' loaded for size | ||||
| (Font)              <5> on input line 20. | ||||
| LaTeX Font Info:    Try loading font information for T1+lmtt on input line 20. | ||||
|  (/usr/share/texmf/tex/latex/lm/t1lmtt.fd | ||||
| File: t1lmtt.fd 2009/10/30 v1.6 Font defs for Latin Modern | ||||
| ) [1 | ||||
| 
 | ||||
| {/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (/home/matteo/Développement/projet-cmi/docs/nouveau-diagramme-classe/diagramme.aux) )  | ||||
| Here is how much of TeX's memory you used: | ||||
|  17990 strings out of 493085 | ||||
|  381277 string characters out of 6136916 | ||||
|  515329 words of memory out of 5000000 | ||||
|  21102 multiletter control sequences out of 15000+600000 | ||||
|  28970 words of font info for 30 fonts, out of 8000000 for 9000 | ||||
|  1141 hyphenation exceptions out of 8191 | ||||
|  62i,9n,84p,445b,807s stack positions out of 5000i,500n,10000p,200000b,80000s | ||||
| {/usr/share/texmf/fonts/enc/dvips/lm/lm-ec.enc}</usr/share/texmf/fonts/type1/public/lm/lmbx9.pfb></usr/share/texmf/fonts/type1/public/lm/lmr9.pfb></usr/share/texmf/fonts/type1/public/lm/lmri9.pfb></usr/share/texmf/fonts/type1/public/lm/lmtt9.pfb> | ||||
| Output written on /home/matteo/Développement/projet-cmi/docs/nouveau-diagramme-classe/diagramme.pdf (1 page, 92689 bytes). | ||||
| PDF statistics: | ||||
|  52 PDF objects out of 1000 (max. 8388607) | ||||
|  28 compressed objects within 1 object stream | ||||
|  0 named destinations out of 1000 (max. 500000) | ||||
|  109 words of extra memory for PDF output out of 10000 (max. 10000000) | ||||
| 
 | ||||
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							|  | @ -1,65 +0,0 @@ | |||
| \documentclass[tikz,border=30pt]{standalone} | ||||
| 
 | ||||
| \usepackage[utf8]{inputenc} | ||||
| \usepackage[T1]{fontenc} | ||||
| \usepackage{lmodern} | ||||
| \usepackage{tikz} | ||||
| \usepackage{tikz-uml} | ||||
| \usepackage[french]{babel} | ||||
| 
 | ||||
| \begin{document} | ||||
| \begin{tikzpicture} | ||||
|     \umlclass[y=.5]{Engine}{ | ||||
|         objects : tableau de \texttt{Object}\\ | ||||
|         goLeftKey: booléen\\ | ||||
|         goRightKey : booléen\\ | ||||
|         clock : horloge | ||||
|     }{ | ||||
|         draw() : vide\\ | ||||
|         update() : vide | ||||
|     } | ||||
| 
 | ||||
|     \umlclass[x=6,y=-1]{State}{ | ||||
|         objects : tableau de \texttt{Object}\\ | ||||
|         goLeftKey: booléen\\ | ||||
|         goRightKey : booléen\\ | ||||
|         delta : flottant | ||||
|     }{} | ||||
| 
 | ||||
|     \umlabstract[y=-4]{Object}{ | ||||
|         position : vecteur\\ | ||||
|         charge : entier signé | ||||
|     }{ | ||||
|         \umlvirt{draw(fenêtre : Fenêtre) : vide}\\ | ||||
|         \umlvirt{update(état : State) : vide}\\ | ||||
|         \umlvirt{getLayer() : entier}\\ | ||||
|         getPosition() : vecteur\\ | ||||
|         getCharge() : entier signé | ||||
|     } | ||||
| 
 | ||||
|     \umlabstract[y=-8,x=4]{PhysicsObject}{ | ||||
|         velocity : vecteur\\ | ||||
|         mass : flottant | ||||
|     }{ | ||||
|         getForces(état : State) : vecteur\\ | ||||
|         update(état : State) : vide | ||||
|     } | ||||
| 
 | ||||
|     \umlclass[y=-11.5,x=4]{Ball}{}{ | ||||
|         draw(fenêtre : Fenêtre) : vide\\ | ||||
|         getForces(état : State) : vecteur\\ | ||||
|         getLayer() : 1 | ||||
|     } | ||||
| 
 | ||||
|     \umlclass[y=-8,x=-4]{Block}{}{ | ||||
|         draw(fenêtre : Fenêtre) : vide\\ | ||||
|         update(état : State) : vide\\ | ||||
|         getLayer() : 0 | ||||
|     } | ||||
| 
 | ||||
|     \umlcompo{Engine}{Object} | ||||
|     \umlinherit{Object}{Block} | ||||
|     \umlinherit{Object}{PhysicsObject} | ||||
|     \umlinherit{PhysicsObject}{Ball} | ||||
| \end{tikzpicture} | ||||
| \end{document} | ||||
|  | @ -1,69 +0,0 @@ | |||
| \relax  | ||||
| \providecommand\hyper@newdestlabel[2]{} | ||||
| \@writefile{toc}{\contentsline {chapter}{\IeC {\'E}tude comparative}{21}{chapter*.3}} | ||||
| \@setckpt{./parts/cmp}{ | ||||
| \setcounter{page}{22} | ||||
| \setcounter{equation}{0} | ||||
| \setcounter{enumi}{3} | ||||
| \setcounter{enumii}{4} | ||||
| \setcounter{enumiii}{5} | ||||
| \setcounter{enumiv}{0} | ||||
| \setcounter{footnote}{0} | ||||
| \setcounter{mpfootnote}{0} | ||||
| \setcounter{part}{0} | ||||
| \setcounter{chapter}{3} | ||||
| \setcounter{section}{5} | ||||
| \setcounter{subsection}{0} | ||||
| \setcounter{subsubsection}{0} | ||||
| \setcounter{paragraph}{0} | ||||
| \setcounter{subparagraph}{0} | ||||
| \setcounter{figure}{4} | ||||
| \setcounter{table}{0} | ||||
| \setcounter{Item}{58} | ||||
| \setcounter{Hfootnote}{0} | ||||
| \setcounter{bookmark@seq@number}{20} | ||||
| \setcounter{ganttnum}{-12} | ||||
| \setcounter{ganttwidth}{8} | ||||
| \setcounter{gantttitlenum}{45} | ||||
| \setcounter{tikzumlPackageLayers}{3} | ||||
| \setcounter{tikzumlFragmentLayers}{3} | ||||
| \setcounter{tikzumlStateLayers}{3} | ||||
| \setcounter{tikzumlComponentLayers}{3} | ||||
| \setcounter{tikzumlPackageClassNum}{0} | ||||
| \setcounter{tikzumlPackageSubPackageNum}{0} | ||||
| \setcounter{tikzumlRelationNum}{3} | ||||
| \setcounter{tikzumlNoteNum}{1} | ||||
| \setcounter{pos}{19} | ||||
| \setcounter{posT}{80} | ||||
| \setcounter{posStereo}{50} | ||||
| \setcounter{tikzumlPackageLevel}{0} | ||||
| \setcounter{tikzumlSystemUseCaseNum}{0} | ||||
| \setcounter{tikzumlSystemLevel}{0} | ||||
| \setcounter{tikzumlUseCaseNum}{0} | ||||
| \setcounter{tikzumlActorNum}{0} | ||||
| \setcounter{tikzumlStateJoinNum}{0} | ||||
| \setcounter{tikzumlStateDecisionNum}{0} | ||||
| \setcounter{tikzumlStateInitialNum}{0} | ||||
| \setcounter{tikzumlStateFinalNum}{0} | ||||
| \setcounter{tikzumlStateEnterNum}{0} | ||||
| \setcounter{tikzumlStateExitNum}{0} | ||||
| \setcounter{tikzumlStateEndNum}{0} | ||||
| \setcounter{tikzumlStateHistoryNum}{0} | ||||
| \setcounter{tikzumlStateDeepHistoryNum}{0} | ||||
| \setcounter{tikzumlStateLevel}{0} | ||||
| \setcounter{tikzumlStateSubStateNum}{0} | ||||
| \setcounter{tikzumlStateText}{0} | ||||
| \setcounter{tikzumlObjectNum}{0} | ||||
| \setcounter{tikzumlCallLevel}{0} | ||||
| \setcounter{tikzumlCallNum}{0} | ||||
| \setcounter{tikzumlFragmentLevel}{0} | ||||
| \setcounter{tikzumlFragmentLevelNum}{0} | ||||
| \setcounter{tikzumlFragmentNum}{0} | ||||
| \setcounter{tikzumlFragmentPartNum}{0} | ||||
| \setcounter{tikzumlCallStartFragmentNum}{0} | ||||
| \setcounter{tikzumlCallEndFragmentNum}{0} | ||||
| \setcounter{tikzumlComponentLevel}{0} | ||||
| \setcounter{tikzumlComponentSubComponentNum}{0} | ||||
| \setcounter{tikzumlConnectorNum}{1} | ||||
| \setcounter{section@level}{1} | ||||
| } | ||||
|  | @ -1,69 +0,0 @@ | |||
| \relax  | ||||
| \providecommand\hyper@newdestlabel[2]{} | ||||
| \@writefile{toc}{\contentsline {chapter}{Conclusion}{22}{chapter*.4}} | ||||
| \@setckpt{./parts/conclu}{ | ||||
| \setcounter{page}{23} | ||||
| \setcounter{equation}{0} | ||||
| \setcounter{enumi}{3} | ||||
| \setcounter{enumii}{4} | ||||
| \setcounter{enumiii}{5} | ||||
| \setcounter{enumiv}{0} | ||||
| \setcounter{footnote}{0} | ||||
| \setcounter{mpfootnote}{0} | ||||
| \setcounter{part}{0} | ||||
| \setcounter{chapter}{3} | ||||
| \setcounter{section}{5} | ||||
| \setcounter{subsection}{0} | ||||
| \setcounter{subsubsection}{0} | ||||
| \setcounter{paragraph}{0} | ||||
| \setcounter{subparagraph}{0} | ||||
| \setcounter{figure}{4} | ||||
| \setcounter{table}{0} | ||||
| \setcounter{Item}{58} | ||||
| \setcounter{Hfootnote}{0} | ||||
| \setcounter{bookmark@seq@number}{21} | ||||
| \setcounter{ganttnum}{-12} | ||||
| \setcounter{ganttwidth}{8} | ||||
| \setcounter{gantttitlenum}{45} | ||||
| \setcounter{tikzumlPackageLayers}{3} | ||||
| \setcounter{tikzumlFragmentLayers}{3} | ||||
| \setcounter{tikzumlStateLayers}{3} | ||||
| \setcounter{tikzumlComponentLayers}{3} | ||||
| \setcounter{tikzumlPackageClassNum}{0} | ||||
| \setcounter{tikzumlPackageSubPackageNum}{0} | ||||
| \setcounter{tikzumlRelationNum}{3} | ||||
| \setcounter{tikzumlNoteNum}{1} | ||||
| \setcounter{pos}{19} | ||||
| \setcounter{posT}{80} | ||||
| \setcounter{posStereo}{50} | ||||
| \setcounter{tikzumlPackageLevel}{0} | ||||
| \setcounter{tikzumlSystemUseCaseNum}{0} | ||||
| \setcounter{tikzumlSystemLevel}{0} | ||||
| \setcounter{tikzumlUseCaseNum}{0} | ||||
| \setcounter{tikzumlActorNum}{0} | ||||
| \setcounter{tikzumlStateJoinNum}{0} | ||||
| \setcounter{tikzumlStateDecisionNum}{0} | ||||
| \setcounter{tikzumlStateInitialNum}{0} | ||||
| \setcounter{tikzumlStateFinalNum}{0} | ||||
| \setcounter{tikzumlStateEnterNum}{0} | ||||
| \setcounter{tikzumlStateExitNum}{0} | ||||
| \setcounter{tikzumlStateEndNum}{0} | ||||
| \setcounter{tikzumlStateHistoryNum}{0} | ||||
| \setcounter{tikzumlStateDeepHistoryNum}{0} | ||||
| \setcounter{tikzumlStateLevel}{0} | ||||
| \setcounter{tikzumlStateSubStateNum}{0} | ||||
| \setcounter{tikzumlStateText}{0} | ||||
| \setcounter{tikzumlObjectNum}{0} | ||||
| \setcounter{tikzumlCallLevel}{0} | ||||
| \setcounter{tikzumlCallNum}{0} | ||||
| \setcounter{tikzumlFragmentLevel}{0} | ||||
| \setcounter{tikzumlFragmentLevelNum}{0} | ||||
| \setcounter{tikzumlFragmentNum}{0} | ||||
| \setcounter{tikzumlFragmentPartNum}{0} | ||||
| \setcounter{tikzumlCallStartFragmentNum}{0} | ||||
| \setcounter{tikzumlCallEndFragmentNum}{0} | ||||
| \setcounter{tikzumlComponentLevel}{0} | ||||
| \setcounter{tikzumlComponentSubComponentNum}{0} | ||||
| \setcounter{tikzumlConnectorNum}{1} | ||||
| \setcounter{section@level}{1} | ||||
| } | ||||
|  | @ -1,93 +0,0 @@ | |||
| \relax  | ||||
| \providecommand\hyper@newdestlabel[2]{} | ||||
| \citation{ggo-aga} | ||||
| \citation{game-theory-wiki} | ||||
| \citation{ggo-ai} | ||||
| \citation{ggo-compqueens} | ||||
| \citation{ggo-ffg} | ||||
| \@writefile{toc}{\contentsline {chapter}{\numberline {2}Jeu de go}{8}{chapter.2}} | ||||
| \@writefile{lof}{\addvspace {10\p@ }} | ||||
| \@writefile{lot}{\addvspace {10\p@ }} | ||||
| \@writefile{toc}{\contentsline {section}{\numberline {2.1}Principes}{8}{section.2.1}} | ||||
| \@writefile{toc}{\contentsline {subsection}{\numberline {2.1.1}Mat\IeC {\'e}riel}{8}{subsection.2.1.1}} | ||||
| \@writefile{toc}{\contentsline {subsection}{\numberline {2.1.2}R\IeC {\`e}gles}{8}{subsection.2.1.2}} | ||||
| \@writefile{lof}{\contentsline {figure}{\numberline {2.1}{\ignorespaces La cha\IeC {\^\i }ne blanche sera captur\IeC {\'e}e par la pose d'une pierre noire en~(1)}}{9}{figure.2.1}} | ||||
| \newlabel{fig:go-ex-1}{{2.1}{9}{La chaîne blanche sera capturée par la pose d'une pierre noire en~(1)}{figure.2.1}{}} | ||||
| \@writefile{toc}{\contentsline {subsection}{\numberline {2.1.3}Fin du jeu}{9}{subsection.2.1.3}} | ||||
| \@writefile{lof}{\contentsline {figure}{\numberline {2.2}{\ignorespaces Un territoire du joueur attribu\IeC {\'e} aux blancs en~(1) et un territoire du joueur attribu\IeC {\'e} aux noirs en~(2)}}{9}{figure.2.2}} | ||||
| \newlabel{fig:go-ex-2}{{2.2}{9}{Un territoire du joueur attribué aux blancs en~(1) et un territoire du joueur attribué aux noirs en~(2)}{figure.2.2}{}} | ||||
| \@writefile{toc}{\contentsline {section}{\numberline {2.2}Mod\IeC {\'e}lisation}{9}{section.2.2}} | ||||
| \citation{ggo-algofloodfill} | ||||
| \@writefile{toc}{\contentsline {section}{\numberline {2.3}Algorithmes}{10}{section.2.3}} | ||||
| \@writefile{toc}{\contentsline {section}{\numberline {2.4}Sp\IeC {\'e}cifications}{11}{section.2.4}} | ||||
| \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.1}Version initiale}{11}{subsection.2.4.1}} | ||||
| \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.2}Am\IeC {\'e}liorations possibles}{12}{subsection.2.4.2}} | ||||
| \@writefile{toc}{\contentsline {section}{\numberline {2.5}Organisation}{12}{section.2.5}} | ||||
| \@writefile{lof}{\contentsline {figure}{\numberline {2.3}{\ignorespaces D\IeC {\'e}veloppement du jeu de go sur 40 heures}}{12}{figure.2.3}} | ||||
| \newlabel{fig:go-gantt}{{2.3}{12}{Développement du jeu de go sur 40 heures}{figure.2.3}{}} | ||||
| \@setckpt{./parts/go}{ | ||||
| \setcounter{page}{13} | ||||
| \setcounter{equation}{0} | ||||
| \setcounter{enumi}{3} | ||||
| \setcounter{enumii}{5} | ||||
| \setcounter{enumiii}{5} | ||||
| \setcounter{enumiv}{0} | ||||
| \setcounter{footnote}{0} | ||||
| \setcounter{mpfootnote}{0} | ||||
| \setcounter{part}{0} | ||||
| \setcounter{chapter}{2} | ||||
| \setcounter{section}{5} | ||||
| \setcounter{subsection}{0} | ||||
| \setcounter{subsubsection}{0} | ||||
| \setcounter{paragraph}{0} | ||||
| \setcounter{subparagraph}{0} | ||||
| \setcounter{figure}{3} | ||||
| \setcounter{table}{0} | ||||
| \setcounter{Item}{37} | ||||
| \setcounter{Hfootnote}{0} | ||||
| \setcounter{bookmark@seq@number}{13} | ||||
| \setcounter{ganttnum}{-7} | ||||
| \setcounter{ganttwidth}{8} | ||||
| \setcounter{gantttitlenum}{45} | ||||
| \setcounter{tikzumlPackageLayers}{3} | ||||
| \setcounter{tikzumlFragmentLayers}{3} | ||||
| \setcounter{tikzumlStateLayers}{3} | ||||
| \setcounter{tikzumlComponentLayers}{3} | ||||
| \setcounter{tikzumlPackageClassNum}{0} | ||||
| \setcounter{tikzumlPackageSubPackageNum}{0} | ||||
| \setcounter{tikzumlRelationNum}{1} | ||||
| \setcounter{tikzumlNoteNum}{1} | ||||
| \setcounter{pos}{0} | ||||
| \setcounter{posT}{0} | ||||
| \setcounter{posStereo}{0} | ||||
| \setcounter{tikzumlPackageLevel}{0} | ||||
| \setcounter{tikzumlSystemUseCaseNum}{0} | ||||
| \setcounter{tikzumlSystemLevel}{0} | ||||
| \setcounter{tikzumlUseCaseNum}{0} | ||||
| \setcounter{tikzumlActorNum}{0} | ||||
| \setcounter{tikzumlStateJoinNum}{0} | ||||
| \setcounter{tikzumlStateDecisionNum}{0} | ||||
| \setcounter{tikzumlStateInitialNum}{0} | ||||
| \setcounter{tikzumlStateFinalNum}{0} | ||||
| \setcounter{tikzumlStateEnterNum}{0} | ||||
| \setcounter{tikzumlStateExitNum}{0} | ||||
| \setcounter{tikzumlStateEndNum}{0} | ||||
| \setcounter{tikzumlStateHistoryNum}{0} | ||||
| \setcounter{tikzumlStateDeepHistoryNum}{0} | ||||
| \setcounter{tikzumlStateLevel}{0} | ||||
| \setcounter{tikzumlStateSubStateNum}{0} | ||||
| \setcounter{tikzumlStateText}{0} | ||||
| \setcounter{tikzumlObjectNum}{0} | ||||
| \setcounter{tikzumlCallLevel}{0} | ||||
| \setcounter{tikzumlCallNum}{0} | ||||
| \setcounter{tikzumlFragmentLevel}{0} | ||||
| \setcounter{tikzumlFragmentLevelNum}{0} | ||||
| \setcounter{tikzumlFragmentNum}{0} | ||||
| \setcounter{tikzumlFragmentPartNum}{0} | ||||
| \setcounter{tikzumlCallStartFragmentNum}{0} | ||||
| \setcounter{tikzumlCallEndFragmentNum}{0} | ||||
| \setcounter{tikzumlComponentLevel}{0} | ||||
| \setcounter{tikzumlComponentSubComponentNum}{0} | ||||
| \setcounter{tikzumlConnectorNum}{1} | ||||
| \setcounter{section@level}{1} | ||||
| } | ||||
|  | @ -1,69 +0,0 @@ | |||
| \relax  | ||||
| \providecommand\hyper@newdestlabel[2]{} | ||||
| \@writefile{toc}{\contentsline {chapter}{Introduction}{2}{chapter*.2}} | ||||
| \@setckpt{./parts/intro}{ | ||||
| \setcounter{page}{3} | ||||
| \setcounter{equation}{0} | ||||
| \setcounter{enumi}{0} | ||||
| \setcounter{enumii}{0} | ||||
| \setcounter{enumiii}{0} | ||||
| \setcounter{enumiv}{0} | ||||
| \setcounter{footnote}{0} | ||||
| \setcounter{mpfootnote}{0} | ||||
| \setcounter{part}{0} | ||||
| \setcounter{chapter}{0} | ||||
| \setcounter{section}{0} | ||||
| \setcounter{subsection}{0} | ||||
| \setcounter{subsubsection}{0} | ||||
| \setcounter{paragraph}{0} | ||||
| \setcounter{subparagraph}{0} | ||||
| \setcounter{figure}{0} | ||||
| \setcounter{table}{0} | ||||
| \setcounter{Item}{0} | ||||
| \setcounter{Hfootnote}{0} | ||||
| \setcounter{bookmark@seq@number}{1} | ||||
| \setcounter{ganttnum}{0} | ||||
| \setcounter{ganttwidth}{0} | ||||
| \setcounter{gantttitlenum}{0} | ||||
| \setcounter{tikzumlPackageLayers}{3} | ||||
| \setcounter{tikzumlFragmentLayers}{3} | ||||
| \setcounter{tikzumlStateLayers}{3} | ||||
| \setcounter{tikzumlComponentLayers}{3} | ||||
| \setcounter{tikzumlPackageClassNum}{0} | ||||
| \setcounter{tikzumlPackageSubPackageNum}{0} | ||||
| \setcounter{tikzumlRelationNum}{1} | ||||
| \setcounter{tikzumlNoteNum}{1} | ||||
| \setcounter{pos}{0} | ||||
| \setcounter{posT}{0} | ||||
| \setcounter{posStereo}{0} | ||||
| \setcounter{tikzumlPackageLevel}{0} | ||||
| \setcounter{tikzumlSystemUseCaseNum}{0} | ||||
| \setcounter{tikzumlSystemLevel}{0} | ||||
| \setcounter{tikzumlUseCaseNum}{0} | ||||
| \setcounter{tikzumlActorNum}{0} | ||||
| \setcounter{tikzumlStateJoinNum}{0} | ||||
| \setcounter{tikzumlStateDecisionNum}{0} | ||||
| \setcounter{tikzumlStateInitialNum}{0} | ||||
| \setcounter{tikzumlStateFinalNum}{0} | ||||
| \setcounter{tikzumlStateEnterNum}{0} | ||||
| \setcounter{tikzumlStateExitNum}{0} | ||||
| \setcounter{tikzumlStateEndNum}{0} | ||||
| \setcounter{tikzumlStateHistoryNum}{0} | ||||
| \setcounter{tikzumlStateDeepHistoryNum}{0} | ||||
| \setcounter{tikzumlStateLevel}{0} | ||||
| \setcounter{tikzumlStateSubStateNum}{0} | ||||
| \setcounter{tikzumlStateText}{0} | ||||
| \setcounter{tikzumlObjectNum}{0} | ||||
| \setcounter{tikzumlCallLevel}{0} | ||||
| \setcounter{tikzumlCallNum}{0} | ||||
| \setcounter{tikzumlFragmentLevel}{0} | ||||
| \setcounter{tikzumlFragmentLevelNum}{0} | ||||
| \setcounter{tikzumlFragmentNum}{0} | ||||
| \setcounter{tikzumlFragmentPartNum}{0} | ||||
| \setcounter{tikzumlCallStartFragmentNum}{0} | ||||
| \setcounter{tikzumlCallEndFragmentNum}{0} | ||||
| \setcounter{tikzumlComponentLevel}{0} | ||||
| \setcounter{tikzumlComponentSubComponentNum}{0} | ||||
| \setcounter{tikzumlConnectorNum}{1} | ||||
| \setcounter{section@level}{0} | ||||
| } | ||||
|  | @ -1,91 +0,0 @@ | |||
| \relax  | ||||
| \providecommand\hyper@newdestlabel[2]{} | ||||
| \citation{gof-wikipedia} | ||||
| \citation{gof-automata} | ||||
| \citation{gof-conwaylife} | ||||
| \@writefile{toc}{\contentsline {chapter}{\numberline {1}Jeu de la vie}{3}{chapter.1}} | ||||
| \@writefile{lof}{\addvspace {10\p@ }} | ||||
| \@writefile{lot}{\addvspace {10\p@ }} | ||||
| \@writefile{toc}{\contentsline {section}{\numberline {1.1}Principes}{3}{section.1.1}} | ||||
| \newlabel{sec:principes}{{1.1}{3}{Principes}{section.1.1}{}} | ||||
| \@writefile{lof}{\contentsline {figure}{\numberline {1.1}{\ignorespaces Mort par sous-population}}{4}{figure.1.1}} | ||||
| \newlabel{fig:life-ex-1}{{1.1}{4}{Mort par sous-population}{figure.1.1}{}} | ||||
| \@writefile{lof}{\contentsline {figure}{\numberline {1.2}{\ignorespaces Un oscillateur, une configuration qui se r\IeC {\'e}p\IeC {\`e}te ind\IeC {\'e}finiment}}{4}{figure.1.2}} | ||||
| \newlabel{fig:life-ex-2}{{1.2}{4}{Un oscillateur, une configuration qui se répète indéfiniment}{figure.1.2}{}} | ||||
| \@writefile{lof}{\contentsline {figure}{\numberline {1.3}{\ignorespaces Stabilisation de la configuration en quatre \IeC {\'e}tats}}{4}{figure.1.3}} | ||||
| \newlabel{fig:life-ex-3}{{1.3}{4}{Stabilisation de la configuration en quatre états}{figure.1.3}{}} | ||||
| \@writefile{toc}{\contentsline {section}{\numberline {1.2}Mod\IeC {\'e}lisation}{5}{section.1.2}} | ||||
| \@writefile{toc}{\contentsline {section}{\numberline {1.3}Algorithmes}{5}{section.1.3}} | ||||
| \citation{gof-hashlife} | ||||
| \@writefile{toc}{\contentsline {section}{\numberline {1.4}Sp\IeC {\'e}cifications}{6}{section.1.4}} | ||||
| \@writefile{toc}{\contentsline {subsection}{\numberline {1.4.1}Version initiale}{6}{subsection.1.4.1}} | ||||
| \@writefile{toc}{\contentsline {subsection}{\numberline {1.4.2}Am\IeC {\'e}liorations possibles}{6}{subsection.1.4.2}} | ||||
| \@writefile{toc}{\contentsline {section}{\numberline {1.5}Organisation}{7}{section.1.5}} | ||||
| \@writefile{lof}{\contentsline {figure}{\numberline {1.4}{\ignorespaces D\IeC {\'e}veloppement du jeu de la vie sur 40 heures}}{7}{figure.1.4}} | ||||
| \newlabel{fig:life-gantt}{{1.4}{7}{Développement du jeu de la vie sur 40 heures}{figure.1.4}{}} | ||||
| \@setckpt{./parts/life}{ | ||||
| \setcounter{page}{8} | ||||
| \setcounter{equation}{0} | ||||
| \setcounter{enumi}{3} | ||||
| \setcounter{enumii}{1} | ||||
| \setcounter{enumiii}{4} | ||||
| \setcounter{enumiv}{0} | ||||
| \setcounter{footnote}{0} | ||||
| \setcounter{mpfootnote}{0} | ||||
| \setcounter{part}{0} | ||||
| \setcounter{chapter}{1} | ||||
| \setcounter{section}{5} | ||||
| \setcounter{subsection}{0} | ||||
| \setcounter{subsubsection}{0} | ||||
| \setcounter{paragraph}{0} | ||||
| \setcounter{subparagraph}{0} | ||||
| \setcounter{figure}{4} | ||||
| \setcounter{table}{0} | ||||
| \setcounter{Item}{15} | ||||
| \setcounter{Hfootnote}{0} | ||||
| \setcounter{bookmark@seq@number}{7} | ||||
| \setcounter{ganttnum}{-5} | ||||
| \setcounter{ganttwidth}{8} | ||||
| \setcounter{gantttitlenum}{45} | ||||
| \setcounter{tikzumlPackageLayers}{3} | ||||
| \setcounter{tikzumlFragmentLayers}{3} | ||||
| \setcounter{tikzumlStateLayers}{3} | ||||
| \setcounter{tikzumlComponentLayers}{3} | ||||
| \setcounter{tikzumlPackageClassNum}{0} | ||||
| \setcounter{tikzumlPackageSubPackageNum}{0} | ||||
| \setcounter{tikzumlRelationNum}{1} | ||||
| \setcounter{tikzumlNoteNum}{1} | ||||
| \setcounter{pos}{0} | ||||
| \setcounter{posT}{0} | ||||
| \setcounter{posStereo}{0} | ||||
| \setcounter{tikzumlPackageLevel}{0} | ||||
| \setcounter{tikzumlSystemUseCaseNum}{0} | ||||
| \setcounter{tikzumlSystemLevel}{0} | ||||
| \setcounter{tikzumlUseCaseNum}{0} | ||||
| \setcounter{tikzumlActorNum}{0} | ||||
| \setcounter{tikzumlStateJoinNum}{0} | ||||
| \setcounter{tikzumlStateDecisionNum}{0} | ||||
| \setcounter{tikzumlStateInitialNum}{0} | ||||
| \setcounter{tikzumlStateFinalNum}{0} | ||||
| \setcounter{tikzumlStateEnterNum}{0} | ||||
| \setcounter{tikzumlStateExitNum}{0} | ||||
| \setcounter{tikzumlStateEndNum}{0} | ||||
| \setcounter{tikzumlStateHistoryNum}{0} | ||||
| \setcounter{tikzumlStateDeepHistoryNum}{0} | ||||
| \setcounter{tikzumlStateLevel}{0} | ||||
| \setcounter{tikzumlStateSubStateNum}{0} | ||||
| \setcounter{tikzumlStateText}{0} | ||||
| \setcounter{tikzumlObjectNum}{0} | ||||
| \setcounter{tikzumlCallLevel}{0} | ||||
| \setcounter{tikzumlCallNum}{0} | ||||
| \setcounter{tikzumlFragmentLevel}{0} | ||||
| \setcounter{tikzumlFragmentLevelNum}{0} | ||||
| \setcounter{tikzumlFragmentNum}{0} | ||||
| \setcounter{tikzumlFragmentPartNum}{0} | ||||
| \setcounter{tikzumlCallStartFragmentNum}{0} | ||||
| \setcounter{tikzumlCallEndFragmentNum}{0} | ||||
| \setcounter{tikzumlComponentLevel}{0} | ||||
| \setcounter{tikzumlComponentSubComponentNum}{0} | ||||
| \setcounter{tikzumlConnectorNum}{1} | ||||
| \setcounter{section@level}{1} | ||||
| } | ||||
|  | @ -1,100 +0,0 @@ | |||
| \relax  | ||||
| \providecommand\hyper@newdestlabel[2]{} | ||||
| \@writefile{toc}{\contentsline {chapter}{\numberline {3}Jeu de plateformes coop\IeC {\'e}ratif}{13}{chapter.3}} | ||||
| \@writefile{lof}{\addvspace {10\p@ }} | ||||
| \@writefile{lot}{\addvspace {10\p@ }} | ||||
| \@writefile{toc}{\contentsline {section}{\numberline {3.1}Principes}{13}{section.3.1}} | ||||
| \@writefile{toc}{\contentsline {subsection}{\numberline {3.1.1}Joueurs}{14}{subsection.3.1.1}} | ||||
| \newlabel{section:ptf-joueurs}{{3.1.1}{14}{Joueurs}{subsection.3.1.1}{}} | ||||
| \@writefile{toc}{\contentsline {subsection}{\numberline {3.1.2}Cam\IeC {\'e}ra}{14}{subsection.3.1.2}} | ||||
| \@writefile{toc}{\contentsline {subsection}{\numberline {3.1.3}Blocs}{14}{subsection.3.1.3}} | ||||
| \newlabel{section:ptf-blocs}{{3.1.3}{14}{Blocs}{subsection.3.1.3}{}} | ||||
| \citation{ptf-euler} | ||||
| \@writefile{toc}{\contentsline {section}{\numberline {3.2}Mod\IeC {\'e}lisation}{15}{section.3.2}} | ||||
| \@writefile{lof}{\contentsline {figure}{\numberline {3.1}{\ignorespaces Diagramme des classes utilis\IeC {\'e}es}}{15}{figure.3.1}} | ||||
| \newlabel{fig:ptf-uml-diagram}{{3.1}{15}{Diagramme des classes utilisées}{figure.3.1}{}} | ||||
| \@writefile{toc}{\contentsline {section}{\numberline {3.3}Algorithmes}{16}{section.3.3}} | ||||
| \newlabel{section:ptf-algos}{{3.3}{16}{Algorithmes}{section.3.3}{}} | ||||
| \@writefile{toc}{\contentsline {subsection}{\numberline {3.3.1}Physique}{16}{subsection.3.3.1}} | ||||
| \citation{ptf-collision-detection} | ||||
| \citation{ptf-collision-response} | ||||
| \@writefile{toc}{\contentsline {subsection}{\numberline {3.3.2}Dessin}{17}{subsection.3.3.2}} | ||||
| \@writefile{toc}{\contentsline {subsection}{\numberline {3.3.3}Moteur}{17}{subsection.3.3.3}} | ||||
| \@writefile{toc}{\contentsline {section}{\numberline {3.4}Sp\IeC {\'e}cifications}{17}{section.3.4}} | ||||
| \@writefile{toc}{\contentsline {subsection}{\numberline {3.4.1}Version initiale}{17}{subsection.3.4.1}} | ||||
| \@writefile{lof}{\contentsline {figure}{\numberline {3.2}{\ignorespaces Vue explos\IeC {\'e}e des trois couches de rendu du jeu}}{18}{figure.3.2}} | ||||
| \newlabel{fig:ptf-layering-exploded}{{3.2}{18}{Vue explosée des trois couches de rendu du jeu}{figure.3.2}{}} | ||||
| \@writefile{lof}{\contentsline {figure}{\numberline {3.3}{\ignorespaces Une configuration similaire \IeC {\`a} celle de la figure \ref  {fig:ptf-layering-exploded}, vue de face}}{18}{figure.3.3}} | ||||
| \newlabel{fig:ptf-layering-merged}{{3.3}{18}{Une configuration similaire à celle de la figure \ref {fig:ptf-layering-exploded}, vue de face}{figure.3.3}{}} | ||||
| \citation{ptf-verlet} | ||||
| \citation{ptf-rk4} | ||||
| \@writefile{toc}{\contentsline {subsection}{\numberline {3.4.2}Am\IeC {\'e}liorations possibles}{19}{subsection.3.4.2}} | ||||
| \@writefile{toc}{\contentsline {section}{\numberline {3.5}Organisation}{19}{section.3.5}} | ||||
| \@writefile{lof}{\contentsline {figure}{\numberline {3.4}{\ignorespaces D\IeC {\'e}veloppement du jeu sur 40 heures}}{20}{figure.3.4}} | ||||
| \newlabel{fig:ptf-gantt}{{3.4}{20}{Développement du jeu sur 40 heures}{figure.3.4}{}} | ||||
| \@setckpt{./parts/ptf}{ | ||||
| \setcounter{page}{21} | ||||
| \setcounter{equation}{0} | ||||
| \setcounter{enumi}{3} | ||||
| \setcounter{enumii}{4} | ||||
| \setcounter{enumiii}{5} | ||||
| \setcounter{enumiv}{0} | ||||
| \setcounter{footnote}{0} | ||||
| \setcounter{mpfootnote}{0} | ||||
| \setcounter{part}{0} | ||||
| \setcounter{chapter}{3} | ||||
| \setcounter{section}{5} | ||||
| \setcounter{subsection}{0} | ||||
| \setcounter{subsubsection}{0} | ||||
| \setcounter{paragraph}{0} | ||||
| \setcounter{subparagraph}{0} | ||||
| \setcounter{figure}{4} | ||||
| \setcounter{table}{0} | ||||
| \setcounter{Item}{58} | ||||
| \setcounter{Hfootnote}{0} | ||||
| \setcounter{bookmark@seq@number}{19} | ||||
| \setcounter{ganttnum}{-12} | ||||
| \setcounter{ganttwidth}{8} | ||||
| \setcounter{gantttitlenum}{45} | ||||
| \setcounter{tikzumlPackageLayers}{3} | ||||
| \setcounter{tikzumlFragmentLayers}{3} | ||||
| \setcounter{tikzumlStateLayers}{3} | ||||
| \setcounter{tikzumlComponentLayers}{3} | ||||
| \setcounter{tikzumlPackageClassNum}{0} | ||||
| \setcounter{tikzumlPackageSubPackageNum}{0} | ||||
| \setcounter{tikzumlRelationNum}{3} | ||||
| \setcounter{tikzumlNoteNum}{1} | ||||
| \setcounter{pos}{19} | ||||
| \setcounter{posT}{80} | ||||
| \setcounter{posStereo}{50} | ||||
| \setcounter{tikzumlPackageLevel}{0} | ||||
| \setcounter{tikzumlSystemUseCaseNum}{0} | ||||
| \setcounter{tikzumlSystemLevel}{0} | ||||
| \setcounter{tikzumlUseCaseNum}{0} | ||||
| \setcounter{tikzumlActorNum}{0} | ||||
| \setcounter{tikzumlStateJoinNum}{0} | ||||
| \setcounter{tikzumlStateDecisionNum}{0} | ||||
| \setcounter{tikzumlStateInitialNum}{0} | ||||
| \setcounter{tikzumlStateFinalNum}{0} | ||||
| \setcounter{tikzumlStateEnterNum}{0} | ||||
| \setcounter{tikzumlStateExitNum}{0} | ||||
| \setcounter{tikzumlStateEndNum}{0} | ||||
| \setcounter{tikzumlStateHistoryNum}{0} | ||||
| \setcounter{tikzumlStateDeepHistoryNum}{0} | ||||
| \setcounter{tikzumlStateLevel}{0} | ||||
| \setcounter{tikzumlStateSubStateNum}{0} | ||||
| \setcounter{tikzumlStateText}{0} | ||||
| \setcounter{tikzumlObjectNum}{0} | ||||
| \setcounter{tikzumlCallLevel}{0} | ||||
| \setcounter{tikzumlCallNum}{0} | ||||
| \setcounter{tikzumlFragmentLevel}{0} | ||||
| \setcounter{tikzumlFragmentLevelNum}{0} | ||||
| \setcounter{tikzumlFragmentNum}{0} | ||||
| \setcounter{tikzumlFragmentPartNum}{0} | ||||
| \setcounter{tikzumlCallStartFragmentNum}{0} | ||||
| \setcounter{tikzumlCallEndFragmentNum}{0} | ||||
| \setcounter{tikzumlComponentLevel}{0} | ||||
| \setcounter{tikzumlComponentSubComponentNum}{0} | ||||
| \setcounter{tikzumlConnectorNum}{1} | ||||
| \setcounter{section@level}{1} | ||||
| } | ||||
|  | @ -1,50 +0,0 @@ | |||
| \relax  | ||||
| \providecommand\hyper@newdestlabel[2]{} | ||||
| \catcode `:\active  | ||||
| \catcode `;\active  | ||||
| \catcode `!\active  | ||||
| \catcode `?\active  | ||||
| \providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} | ||||
| \HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined | ||||
| \global\let\oldcontentsline\contentsline | ||||
| \gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}} | ||||
| \global\let\oldnewlabel\newlabel | ||||
| \gdef\newlabel#1#2{\newlabelxx{#1}#2} | ||||
| \gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} | ||||
| \AtEndDocument{\ifx\hyper@anchor\@undefined | ||||
| \let\contentsline\oldcontentsline | ||||
| \let\newlabel\oldnewlabel | ||||
| \fi} | ||||
| \fi} | ||||
| \global\let\hyper@last\relax  | ||||
| \gdef\HyperFirstAtBeginDocument#1{#1} | ||||
| \providecommand\HyField@AuxAddToFields[1]{} | ||||
| \providecommand\HyField@AuxAddToCoFields[2]{} | ||||
| \select@language{french} | ||||
| \@writefile{toc}{\select@language{french}} | ||||
| \@writefile{lof}{\select@language{french}} | ||||
| \@writefile{lot}{\select@language{french}} | ||||
| \@input{./parts/intro.aux} | ||||
| \@input{./parts/life.aux} | ||||
| \@input{./parts/go.aux} | ||||
| \@input{./parts/ptf.aux} | ||||
| \@input{./parts/cmp.aux} | ||||
| \@input{./parts/conclu.aux} | ||||
| \bibstyle{unsrt} | ||||
| \bibdata{rapport} | ||||
| \bibcite{gof-wikipedia}{1} | ||||
| \bibcite{gof-automata}{2} | ||||
| \bibcite{gof-conwaylife}{3} | ||||
| \bibcite{gof-hashlife}{4} | ||||
| \bibcite{ggo-aga}{5} | ||||
| \bibcite{game-theory-wiki}{6} | ||||
| \bibcite{ggo-ai}{7} | ||||
| \bibcite{ggo-compqueens}{8} | ||||
| \bibcite{ggo-ffg}{9} | ||||
| \bibcite{ggo-algofloodfill}{10} | ||||
| \bibcite{ptf-euler}{11} | ||||
| \bibcite{ptf-collision-detection}{12} | ||||
| \bibcite{ptf-collision-response}{13} | ||||
| \bibcite{ptf-verlet}{14} | ||||
| \bibcite{ptf-rk4}{15} | ||||
| \@writefile{toc}{\contentsline {chapter}{Webographie}{23}{section*.5}} | ||||
|  | @ -1,80 +0,0 @@ | |||
| \begin{thebibliography}{10} | ||||
| 
 | ||||
| \bibitem{gof-wikipedia} | ||||
| Wikipédia. | ||||
| \newblock Jeu de la vie. | ||||
| \newblock \url{https://goo.gl/RLc7C7}. | ||||
| 
 | ||||
| \bibitem{gof-automata} | ||||
| Wikipédia. | ||||
| \newblock Automate cellulaire. | ||||
| \newblock \url{https://goo.gl/FZ5S5L}. | ||||
| 
 | ||||
| \bibitem{gof-conwaylife} | ||||
| LifeWiki. | ||||
| \newblock Conway's game of life. | ||||
| \newblock \url{http://goo.gl/JXXQxz}. | ||||
| 
 | ||||
| \bibitem{gof-hashlife} | ||||
| Wikipédia. | ||||
| \newblock Hashlife. | ||||
| \newblock \url{https://goo.gl/nFW2oM}. | ||||
| 
 | ||||
| \bibitem{ggo-aga} | ||||
| American~Go Association. | ||||
| \newblock A brief history of go. | ||||
| \newblock \url{http://goo.gl/1NY9Xt}. | ||||
| 
 | ||||
| \bibitem{game-theory-wiki} | ||||
| Wikipédia. | ||||
| \newblock Classification des jeux. | ||||
| \newblock \url{https://goo.gl/guXBAO}. | ||||
| 
 | ||||
| \bibitem{ggo-ai} | ||||
| SciencePost. | ||||
| \newblock Jeu de go : l’affrontement entre le meilleur joueur humain du monde | ||||
|   et la machine sera retransmis en direct. | ||||
| \newblock \url{http://goo.gl/pD8zKG}. | ||||
| 
 | ||||
| \bibitem{ggo-compqueens} | ||||
| Jay Burmeister. | ||||
| \newblock An introduction to computer go. | ||||
| \newblock \url{http://goo.gl/WMPpHU}. | ||||
| 
 | ||||
| \bibitem{ggo-ffg} | ||||
| Fédération~Française de~Go. | ||||
| \newblock Règle française du jeu de go. | ||||
| \newblock \url{http://goo.gl/sK15PL}. | ||||
| 
 | ||||
| \bibitem{ggo-algofloodfill} | ||||
| Wikipedia. | ||||
| \newblock Flood fill. | ||||
| \newblock \url{https://goo.gl/ERbxi3}. | ||||
| 
 | ||||
| \bibitem{ptf-euler} | ||||
| John~T. Foster. | ||||
| \newblock Brief explanation of integration schemes. | ||||
| \newblock \url{http://goo.gl/HRssYN}. | ||||
| 
 | ||||
| \bibitem{ptf-collision-detection} | ||||
| StackExchange GameAlchemist. | ||||
| \newblock Collision between {AABB} and circle. | ||||
| \newblock \url{http://goo.gl/7E84Ef}. | ||||
| 
 | ||||
| \bibitem{ptf-collision-response} | ||||
| Randy Gaul. | ||||
| \newblock How to create a custom 2d physics engine: The basics and impulse | ||||
|   resolution. | ||||
| \newblock \url{http://goo.gl/G0gdWU}. | ||||
| 
 | ||||
| \bibitem{ptf-verlet} | ||||
| Wikipedia. | ||||
| \newblock Verlet integration. | ||||
| \newblock \url{https://goo.gl/Q6giDh}. | ||||
| 
 | ||||
| \bibitem{ptf-rk4} | ||||
| Wikipedia. | ||||
| \newblock The runge-kutta method. | ||||
| \newblock \url{https://goo.gl/UHTD8S}. | ||||
| 
 | ||||
| \end{thebibliography} | ||||
|  | @ -1,83 +0,0 @@ | |||
| This is BibTeX, Version 0.99d (TeX Live 2015/Debian) | ||||
| Capacity: max_strings=35307, hash_size=35307, hash_prime=30011 | ||||
| The top-level auxiliary file: rapport.aux | ||||
| A level-1 auxiliary file: ./parts/intro.aux | ||||
| A level-1 auxiliary file: ./parts/life.aux | ||||
| A level-1 auxiliary file: ./parts/go.aux | ||||
| A level-1 auxiliary file: ./parts/ptf.aux | ||||
| A level-1 auxiliary file: ./parts/cmp.aux | ||||
| A level-1 auxiliary file: ./parts/conclu.aux | ||||
| The style file: unsrt.bst | ||||
| Database file #1: rapport.bib | ||||
| Warning--entry type for "game-theory-wiki" isn't style-file defined | ||||
| --line 1 of file rapport.bib | ||||
| Warning--entry type for "gof-hashlife" isn't style-file defined | ||||
| --line 7 of file rapport.bib | ||||
| Warning--entry type for "gof-conwaylife" isn't style-file defined | ||||
| --line 13 of file rapport.bib | ||||
| Warning--entry type for "gof-wikipedia" isn't style-file defined | ||||
| --line 19 of file rapport.bib | ||||
| Warning--entry type for "gof-automata" isn't style-file defined | ||||
| --line 25 of file rapport.bib | ||||
| Warning--entry type for "ggo-ffg" isn't style-file defined | ||||
| --line 31 of file rapport.bib | ||||
| Warning--entry type for "ggo-aga" isn't style-file defined | ||||
| --line 37 of file rapport.bib | ||||
| Warning--entry type for "ggo-ai" isn't style-file defined | ||||
| --line 43 of file rapport.bib | ||||
| Warning--entry type for "ggo-compqueens" isn't style-file defined | ||||
| --line 49 of file rapport.bib | ||||
| Warning--entry type for "ggo-algofloodfill" isn't style-file defined | ||||
| --line 55 of file rapport.bib | ||||
| Warning--entry type for "ptf-euler" isn't style-file defined | ||||
| --line 61 of file rapport.bib | ||||
| Warning--entry type for "ptf-rk4" isn't style-file defined | ||||
| --line 67 of file rapport.bib | ||||
| Warning--entry type for "ptf-verlet" isn't style-file defined | ||||
| --line 73 of file rapport.bib | ||||
| Warning--entry type for "ptf-collision-detection" isn't style-file defined | ||||
| --line 79 of file rapport.bib | ||||
| Warning--entry type for "ptf-collision-response" isn't style-file defined | ||||
| --line 85 of file rapport.bib | ||||
| You've used 15 entries, | ||||
|             1791 wiz_defined-function locations, | ||||
|             505 strings with 4823 characters, | ||||
| and the built_in function-call counts, 1897 in all, are: | ||||
| = -- 150 | ||||
| > -- 60 | ||||
| < -- 0 | ||||
| + -- 30 | ||||
| - -- 15 | ||||
| * -- 2 | ||||
| := -- 296 | ||||
| add.period$ -- 45 | ||||
| call.type$ -- 15 | ||||
| change.case$ -- 15 | ||||
| chr.to.int$ -- 0 | ||||
| cite$ -- 15 | ||||
| duplicate$ -- 75 | ||||
| empty$ -- 271 | ||||
| format.name$ -- 15 | ||||
| if$ -- 451 | ||||
| int.to.chr$ -- 0 | ||||
| int.to.str$ -- 15 | ||||
| missing$ -- 0 | ||||
| newline$ -- 78 | ||||
| num.names$ -- 15 | ||||
| pop$ -- 75 | ||||
| preamble$ -- 1 | ||||
| purify$ -- 0 | ||||
| quote$ -- 0 | ||||
| skip$ -- 74 | ||||
| stack$ -- 0 | ||||
| substring$ -- 0 | ||||
| swap$ -- 15 | ||||
| text.length$ -- 0 | ||||
| text.prefix$ -- 0 | ||||
| top$ -- 0 | ||||
| type$ -- 0 | ||||
| warning$ -- 0 | ||||
| while$ -- 15 | ||||
| width$ -- 17 | ||||
| write$ -- 137 | ||||
| (There were 15 warnings) | ||||
|  | @ -1,276 +0,0 @@ | |||
| # Fdb version 3 | ||||
| ["bibtex rapport"] 1456694154 "rapport.aux" "rapport.bbl" "rapport" 1456695565 | ||||
|   "/home/matteo/Développement/se205-1/rapport/./parts/cmp.aux" 1456695565 2227 6033427bf64a30351d37d116985c990b "" | ||||
|   "/home/matteo/Développement/se205-1/rapport/./parts/conclu.aux" 1456695565 2214 a500c0136d4e77eae997997f0250d775 "" | ||||
|   "/home/matteo/Développement/se205-1/rapport/./parts/go.aux" 1456695565 4323 e8b5821611a06a5b5b58645f6e41fa84 "" | ||||
|   "/home/matteo/Développement/se205-1/rapport/./parts/intro.aux" 1456695564 2205 3460af3713a72fde30781b206dd80605 "" | ||||
|   "/home/matteo/Développement/se205-1/rapport/./parts/life.aux" 1456695564 4114 1763a2dc05d152891658de72c33a1560 "" | ||||
|   "/home/matteo/Développement/se205-1/rapport/./parts/ptf.aux" 1456695565 4990 4f4e8e52e5418585daf7e548839fda0d "" | ||||
|   "/usr/share/texlive/texmf-dist/bibtex/bst/base/unsrt.bst" 1292289607 18030 1376b4b231b50c66211e47e42eda2875 "" | ||||
|   "rapport.aux" 1456695565 1562 3608ee794e031d99e8fd86a777bbd855 "" | ||||
|   "rapport.bcf" 0 -1 0 "" | ||||
|   "rapport.bib" 1456596871 2297 e3aaa5de857b3b15d14ddbb417375704 "" | ||||
|   (generated) | ||||
|   "rapport.blg" | ||||
|   "rapport.bbl" | ||||
| ["pdflatex"] 1456695563 "rapport.tex" "/home/matteo/Développement/se205-1/rapport/rapport.pdf" "rapport" 1456695565 | ||||
|   "./parts/cmp.aux" 1456695565 2227 6033427bf64a30351d37d116985c990b "" | ||||
|   "./parts/cmp.tex" 1456676707 2390 4169fb2b74cea52b47a1fe4e51b15526 "" | ||||
|   "./parts/conclu.aux" 1456695565 2214 a500c0136d4e77eae997997f0250d775 "" | ||||
|   "./parts/conclu.tex" 1456677070 671 3276898f607c8af01c0967c6b38c8e23 "" | ||||
|   "./parts/go.aux" 1456695565 4323 e8b5821611a06a5b5b58645f6e41fa84 "" | ||||
|   "./parts/go.tex" 1456608909 10037 0fcec3ea83301a136170628800a427e3 "" | ||||
|   "./parts/intro.aux" 1456695564 2205 3460af3713a72fde30781b206dd80605 "" | ||||
|   "./parts/intro.tex" 1456695560 1106 c7e33459c76392956834e4b948220e29 "" | ||||
|   "./parts/life.aux" 1456695564 4114 1763a2dc05d152891658de72c33a1560 "" | ||||
|   "./parts/life.tex" 1456608892 8492 5f528173dde3f5ad67d613aa49ddcb70 "" | ||||
|   "./parts/ptf.aux" 1456695565 4990 4f4e8e52e5418585daf7e548839fda0d "" | ||||
|   "./parts/ptf.tex" 1456694149 13137 5da030c20fa8d5112f85757c5745469b "" | ||||
|   "/etc/texmf/web2c/texmf.cnf" 1448651457 1101 af7716885e081ab43982cab7b4672c1a "" | ||||
|   "/home/matteo/Développement/se205-1/rapport/rapport.aux" 1456695565 1562 3608ee794e031d99e8fd86a777bbd855 "" | ||||
|   "/home/matteo/texmf/tex/latex/gantt/gantt.sty" 1455303110 10963 93fa521c957ddabedc3b8da95fae8c8d "" | ||||
|   "/home/matteo/texmf/tex/latex/tikz-uml/tikz-uml.sty" 1359744139 211430 eac0f9dc7c1f83dd13dd86c58b009eb9 "" | ||||
|   "/usr/share/texlive/texmf-dist/fonts/map/fontname/texfonts.map" 1272929888 3287 e6b82fe08f5336d4d5ebc73fb1152e87 "" | ||||
|   "/usr/share/texlive/texmf-dist/fonts/tfm/jknappen/ec/ecrm1000.tfm" 1136768653 3584 adb004a0c8e7c46ee66cad73671f37b4 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/context/base/supp-pdf.mkii" 1337017135 71627 94eb9990bed73c364d7f53f960cc8c5b "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/babel-french/frenchb.ldf" 1435536965 58724 88cbcf90df291ab617b57ef39c964247 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/babel/babel.def" 1411763270 49725 b40154b767b0073ee42b35911042b793 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty" 1411763270 13212 dc56c11a26f3ea97bcf005eeda274583 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty" 1284331290 1458 43ab4710dc82f3edeabecd0d099626b2 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/oberdiek/gettitlestring.sty" 1303254447 8237 52810bdb4db2270e717422560a104aea "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty" 1338332114 189108 8b3553a56c83ff61acecb36b75d817e2 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty" 1338332114 70752 45fa392800e07da61fa13446ad46b34d "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex" 1288312291 1006 b103be0bfc8c1682ff1fa9760697a329 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex" 1393459310 42678 ea82fd948b4303ce6a2c8e25d5e8f8aa "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex" 1393459310 19287 b2041c22301def2360f03c004d16068d "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex" 1393459310 6653 6c617c4a5106d9f40e3d70946ba4e0ac "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex" 1393459310 7041 a891ad72049e17c4e366c40ca37b0ccb "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex" 1393459310 4625 40c07e9f6f2f7c674704b3f2055560ce "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex" 1203877327 2631 7eefa6cdbefd8d4e2bad7262cf1094cd "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex" 1393459310 43477 81143b33d9ebafdeead07ede13372427 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex" 1393459310 17436 8d99d4113be311daf23deff86991ee7d "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex" 1393459310 20857 256da99fc70ea570aad1d50fdfd51464 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex" 1393459310 9641 711f0edc22c180a5caf168b6e8970057 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex" 1393459310 34516 658a71478d21df554bce9d9cd436203a "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex" 1288312291 3052 e5672c657232fd63b0a9853b0746297c "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex" 1393459310 16849 86fed972a2b3ad61208a6422e104bf26 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex" 1393459310 21541 4cd19f8ff7dd74d5aa7d803a6397af84 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex" 1393459310 17423 a0f09c822b83b65445bc3ac25542dcc6 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex" 1393459310 8943 2e2495b057f8f0035b5568394d489963 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary3d.code.tex" 1393459310 3281 56ec68164c7e85969124caaa323271c2 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryarrows.code.tex" 1203727794 437 cf40f841f40822be6cb995f8b47112fd "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybackgrounds.code.tex" 1393459310 4611 b858a4e5bd5442802c91a13027dc25bb "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex" 1393459310 5484 4bb4a5cbbd05d6f17a261b59dbd014f1 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.markings.code.tex" 1203727794 782 2479083eef1ef47450770d40ad81f937 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfadings.code.tex" 1288312291 1298 83d7449064b0f0f089f1898a244b6d16 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfit.code.tex" 1393459310 3725 36db4c06798413d051778705f3255eea "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarypatterns.code.tex" 1203727794 884 60c3d56b80194544f9ecdae97dd5e286 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshadows.code.tex" 1203727794 3001 d54bab2f783098ed890fabbeb437b04f "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.arrows.code.tex" 1203727794 527 a8d3e34fbab3dc317cf9b06aa5cdc2e4 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.callouts.code.tex" 1203727794 1158 d6338189706f4587fbc6175c0fb41f17 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.code.tex" 1203727794 607 40dc15d3efcf10f095866a94bd544bc1 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.geometric.code.tex" 1203727794 457 ffe9f8b9d108b5f729fd86c78c63589a "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.misc.code.tex" 1203727794 447 e87a0add254801e837fa6c18f61f340f "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.multipart.code.tex" 1203727794 1004 86af66805a9d0b62bd41ea0796a64d50 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.symbols.code.tex" 1203727794 590 7e11000a24bbee9ae2a4cd0e5d88e58c "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex" 1288312291 11599 d694704a88e2f9007c996d3a6a4d629c "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex" 1393459310 175287 31eb66e838dd5e10589736193a31943c "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.markings.code.tex" 1393459310 5181 c2b736d254ec36204f8fffd5a45bbd41 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.code.tex" 1393459310 31927 7acd27f90dd95ce67ad32166cd0b95ec "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code.tex" 1203727794 2647 defb4a59c2a1d36127a1ac6eebb4a5c1 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibrarypatterns.code.tex" 1288312291 7874 56ca58561783fbca7be095fa7178e656 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex" 1393459310 32969 dbcfd5a7de6a0f7255c333ef60287d59 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.arrows.code.tex" 1288312291 69900 cbd9fafb795a493fb2a3b73713994b78 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.callouts.code.tex" 1393459310 28333 0189c4cfb5044e700e6ba65a32295f01 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.geometric.code.tex" 1288312291 132566 291d42c3b23fdb5c47e51b36a5fea0c4 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.misc.code.tex" 1393459310 37737 ea6cb0b4e615f6048f20ee7153b3cc78 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.multipart.code.tex" 1288312291 49891 e74f8181c57d9359c941b6bee48fccc2 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.symbols.code.tex" 1393459310 90791 0f3e73cae9286c96d9fcb2161cc223bc "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex" 1393459310 454 9e9e7c99f4da4f41698be21eaef4938e "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex" 1393459310 13416 940ea6971d7a65dc440d3479939c66ae "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex" 1393459310 91879 5b3cc8d94c47a5b742393a410f298724 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex" 1393459310 9375 5adc70f722abd29fc250d59e0694b548 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex" 1393459310 21406 80daebd1f9f6a174d8dc77c5bc931bf4 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex" 1393459310 7820 5140d142921f39003e02ccedd072823a "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex" 1288312291 3534 c7f28fbac13616513e513efe93b8569b "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex" 1393459310 3167 7c9394e79aac27db96a92f9b2792b858 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex" 1393459310 9165 99b6966558714c44c0b5ee44ae261ffc "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex" 1288312291 6964 d4b5e82dabddda1c728063bb9c8a22ba "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex" 1288312291 2688 139c6abc86761a6190c2f4bef5d752be "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex" 1393459310 91075 1c1d7a7e8f0f737f72aa8becf0b37136 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex" 1393459310 33289 b041d55e91f7382603e2dca6f9ad188d "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex" 1393459310 7099 f44d505bae6c7c2b933cdd63441db4b9 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex" 1393459310 71902 658cc1e13f73daec4225b8fc1c27600b "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex" 1393459310 20934 2328bd2e04520e1ab077ac4ee13b8935 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex" 1393459310 15785 e0b14c447df00370d2023fd5c9813190 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex" 1393459310 42336 b13cf09dc317c76a2b165a8501d871cf "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg" 1288312291 978 15af626ebd3d4d790aac19170dac04f2 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def" 1393459310 5437 d91f93ed61ecdc57e119849b2d784a0b "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def" 1393459310 11969 518d66d5b5e20471ba00709ef9c2b267 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex" 1393459310 34488 3bab2022cdd1acab0cd383d8a0ad641b "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex" 1203877327 1983 b5994ebbcee17f1ba3d29bb1bd696fcf "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex" 1393459310 7881 d459d6057e13d10ce7a227ae44b7295e "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex" 1393459310 22211 d696ef78c12269178882d218b2cf191d "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex" 1393459310 36194 e194ef4e0b396b531a3891feb4b1cc22 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex" 1393459310 33377 af391d6ad1bfcbe2278e191f48e43ba8 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex" 1393459310 2286 b5c392d27790ca52b8f8e510ef5044e0 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.tex" 1393459310 6833 114eda2cf1d348e0e7e477a1a4dc1941 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex" 1393459310 16384 3fa06861c9a3391a75df39466f49655f "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def" 1393459310 4500 b148f531c7670d59c695787be06a508b "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkeyval.tex" 1417732693 19231 26434a5656c684f5ffb1f26f98006baa "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkvutils.tex" 1403829539 7677 6f5ce7c1124cad7ec57d05b2562bd8fe "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.sty" 1269905706 144 0ca8d67b000b795a4d9ec000e0fd09c7 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.tex" 1381789620 54373 fd4487ae3e45d4074bc89aea1d2b6807 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty" 1428932888 4572 f29f75cfae3acaf4667f1979db655af9 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty" 1428932888 5159 bb529586d444e85eb00179221b678119 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty" 1428932888 5619 3f48adceb9004b3fefe24c2d2df7d98e "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/base/omsenc.dfu" 1428932888 2005 572b09e94d01e22ed7d4000c92b6e220 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/base/ot1enc.dfu" 1428932888 2757 273e079c3d3a9830c5b4fa2a4ce69c51 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/base/report.cls" 1428932888 23767 74c5551841f58a4efbb8c5d892190037 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo" 1428932888 9179 632e23fed01c842f2eaef1dd9953a446 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.def" 1428932888 9327 bf6addf718ff386725227c5b52941e7e "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.dfu" 1428932888 7617 8f111f916836ef9e09db7ecbcd4e01d6 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/base/utf8.def" 1428932888 6484 2098550b79b15e713b69d9c8845f4437 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/carlisle/scalefnt.sty" 1137109962 1360 df2086bf924b14b72d6121fe9502fcdb "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/etex-pkg/etex.sty" 1425853889 15831 00a960d3ee6577f0512e2fd6b465c9e8 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/forloop/forloop.sty" 1158783347 1717 5de015d7c82d914c51b065065ca9fd34 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty" 1428932888 14285 20d80486c4ae98139889d8789596c967 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty" 1428932888 8125 557ab9f1bfa80d369fb45a914aa8a3b4 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty" 1428932888 2594 d18d5e19aa8239cf867fa670c556d2e9 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty" 1428932888 3439 44bd4a1da7f27787173f2e99116b0a7f "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def" 1352416072 51837 247bd8424b3835ef78c236dc1e0b4aef "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty" 1352416072 231792 5fc9dc7dd667e773a766ecc63bba7f4b "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty" 1351899753 12847 25b617d63258c4f72870c883493a3cf8 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def" 1352416072 14005 155ac8fad2e5dd7c2cdd130fabd96633 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/ifmtarg/ifmtarg.sty" 1278810218 438 4c0f57b7cba6e6ca9226b32da26f82e9 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg" 1254097189 802 7b8c8d72c24d795ed7720e4dfd29bff3 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg" 1279039959 678 4792914a8f45be57bb98413425e4c7af "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg" 1278958963 3563 d35e897cae3b8c6848f6677b73370b54 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/latexconfig/hyperref.cfg" 1254097189 235 6031e5765137be07eed51a510b2b8fb7 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/ms/everyshi.sty" 1177890616 3878 6aa7c08ff2621006e0603349e40a30a8 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/oberdiek/auxhook.sty" 1303254447 3834 707ef09f31d7d2ea47ba89974755dfe0 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty" 1303254447 12029 04d7fdf76e0464c23b5aa3a727952d7c "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/oberdiek/grfext.sty" 1335995445 7075 bd0c34fbf1ae8fd1debd2a554e41b2d5 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty" 1335995445 22417 c74ff4af6a1aa2b65d1924020edbbe11 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty" 1303254447 9581 1158efc648bc09d5064db5703c882159 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pdftex-def/pdftex.def" 1306616590 55368 3c8a0d99822330f2dfabc0dfb09ce897 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty" 1393459310 1190 4e20f1d26da9f86ba6a50d7ad16c48d2 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty" 1288312291 410 5bf12ea7330e5f12c445332a4fe9a263 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty" 1203877327 21115 facf03b7dbe5ea2f5f1dce1ac84b5d05 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty" 1203727794 1091 d9163d29def82ee90370c8a63667742c "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty" 1203877327 339 592cf35cba3d400082b8a9a5d0199d70 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgf/math/pgfmath.sty" 1393459310 306 0796eafca5e159e6ec2167a6d22d81b1 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty" 1393459310 443 0b2e781830192df35c0fd357cf13e26e "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgffor.sty" 1393459310 348 8927fde343487e003b01a4c2ca34073b "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty" 1203727794 274 4cad6e665cc93ac2ac979039a94fa1e1 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty" 1203877327 325 2bcd023400636339210573e2b3ee298b "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/pgfopts/pgfopts.sty" 1405118212 5540 d5c60cf09c59da351aa4023ed084e4eb "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/tools/calc.sty" 1428932888 10214 78c09985255ed93018b1db2c4e2f6deb "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/url/url.sty" 1388531844 12796 8edb7d69a20b857904dd0ea757c14ec9 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/wrapfig/wrapfig.sty" 1137111090 26220 3701aebf80ccdef248c0c20dd062fea9 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty" 1169481954 55224 a43bab84e0ac5e6efcaf9a98bde73a94 "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/xifthen/xifthen.sty" 1240073024 5650 b146a211772e4cfd4ca29af3aac8c3fc "" | ||||
|   "/usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty" 1417732693 4962 9c1069474ff71dbc47d5006555e352d3 "" | ||||
|   "/usr/share/texlive/texmf-dist/web2c/texmf.cnf" 1435377840 31349 7675f8adfbe12aae865d340d35423a49 "" | ||||
|   "/usr/share/texmf/fonts/enc/dvips/lm/lm-ec.enc" 1254938640 2375 baa924870cfb487815765f9094cf3728 "" | ||||
|   "/usr/share/texmf/fonts/enc/dvips/lm/lm-mathit.enc" 1254938640 2405 5dcf2c1b967ee25cc46c58cd52244aed "" | ||||
|   "/usr/share/texmf/fonts/enc/dvips/lm/lm-mathsy.enc" 1254938640 2840 216e6e45ad352e2456e1149f28885bee "" | ||||
|   "/usr/share/texmf/fonts/enc/dvips/lm/lm-rm.enc" 1254938640 2327 9d6df24f9c4f7368395224341a95523a "" | ||||
|   "/usr/share/texmf/fonts/enc/dvips/lm/lm-rmtt.enc" 1254938640 2359 de53213020575850c8f8debc35095765 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/ec-lmbx10.tfm" 1254938640 12076 b54175e02101bea1addf6b2d0197ed12 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/ec-lmbx12.tfm" 1254938640 12088 d750ac78274fa7c9f73ba09914c04f8a "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/ec-lmbx9.tfm" 1254938640 12080 8da3d5e88196e4de175949ad7749b42f "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/ec-lmcsc10.tfm" 1254938640 11276 116dd5bea6621ce4a1999f96d876084c "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/ec-lmr10.tfm" 1254938640 12056 7e13df7fe4cbce21b072ba7c4f4deb6e "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/ec-lmr12.tfm" 1254938640 12092 7b1546e2d096cfd5dcbd4049b0b1ec2e "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/ec-lmr17.tfm" 1254938640 12156 ca1ae6a3c8564e89597f1f993fba1608 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/ec-lmr9.tfm" 1254938640 12084 b7f5e4c003de6f57f07c7e9fee73a37c "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/ec-lmri10.tfm" 1254938640 17148 9556e1b5f936b77a796f68d2d559ba99 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/ec-lmtk10.tfm" 1254938640 1368 5bfeb1cf8f9f0acdb7436bfaa8e0da4e "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/ec-lmtt10.tfm" 1254938640 1372 2ef2c2b492b3c4cd7879fe083abbb061 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/ec-lmtt9.tfm" 1254938640 1372 a2ff2d4391a2d6bba15b518acb79e80f "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/lmex10.tfm" 1254938640 992 ce925c9346c7613270a79afbee98c070 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/lmmi10.tfm" 1254938640 1528 6d36b2385e0ca062a654de6ac59cb34f "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/lmmi12.tfm" 1254938640 1524 753b192b18f2991794f9d41a8228510b "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/lmmi5.tfm" 1254938640 1508 198f5b7b99b5769126de3a533f6fc334 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/lmmi6.tfm" 1254938640 1512 94a3fd88c6f27dbd9ecb46987e297a4e "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/lmmi7.tfm" 1254938640 1528 d5b028dd23da623848ef0645c96a1ed7 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/lmmi8.tfm" 1254938640 1520 a3fe5596932db2db2cbda300920dd4e9 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/lmmi9.tfm" 1254938640 1524 cdf05765c2a8bdb569ea0aa208fb0947 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/lmsy10.tfm" 1254938640 1308 02cc510f9dd6012e5815d0c0ffbf6869 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/lmsy5.tfm" 1254938640 1296 54ed1a711e2303d5282575278e3620b0 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/lmsy6.tfm" 1254938640 1300 b0605d44c16c22d99dc001808e4f24ea "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/lmsy7.tfm" 1254938640 1304 32f22a15acc296b2a4e15698403dcb88 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/lmsy8.tfm" 1254938640 1304 cdc9a17df9ef0d2dc320eff37bbab1c4 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/lmsy9.tfm" 1254938640 1300 ca37bc0213808d24f74bf4d32f81f80d "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/rm-lmr10.tfm" 1254938640 11868 4f81e9b6033c032bdaf9884f4d7ef412 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/rm-lmr12.tfm" 1254938640 11888 6841b91e46b65cf41a49b160e6e74130 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/rm-lmr5.tfm" 1254938640 11804 aefb10c002e6492c25236524a447f969 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/rm-lmr6.tfm" 1254938640 11836 e3b6ce3e601aec94f64a536e7f4224d5 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/rm-lmr7.tfm" 1254938640 11852 5a9022f105fd1ee2797df861e79ae9a0 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/rm-lmr8.tfm" 1254938640 11864 309fd7f43e4a0ba39f6f7644d76e8edf "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/rm-lmr9.tfm" 1254938640 11884 c93929a6974dce79eabb778f219d7e18 "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/rm-lmtt10.tfm" 1254938640 1340 adaa94f9add991a099a6fc98bbb5f02c "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/rm-lmtt8.tfm" 1254938640 1348 e9ce72e654d76f23fb9e1b8842e0576a "" | ||||
|   "/usr/share/texmf/fonts/tfm/public/lm/rm-lmtt9.tfm" 1254938640 1340 95bafc1340b1c519d1b4b4bcc33f5afc "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmbx10.pfb" 1254938640 121021 1bf809ce4a594679006bd72263eba59b "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmbx12.pfb" 1254938640 116908 1fca96723793882c2e0160350c192fc8 "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmbx9.pfb" 1254938640 126646 439622e6fd57f388c9979d39c4fce535 "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmcsc10.pfb" 1254938640 116427 4a5b1ccaa7cce719091920a86b58608d "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmmi10.pfb" 1254938640 30388 702fae6a5f0e6e9c48a1d872b442ffcf "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmr10.pfb" 1254938640 119235 f35b44530a1d90eb90fe15d9cba67ea0 "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmr12.pfb" 1254938640 113634 f99c44d58bae0863375faf0e1d74d612 "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmr17.pfb" 1254938640 119752 1bd8d06e4079df624bf59ce3ad7c9aa6 "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmr5.pfb" 1254938640 120387 212cad1e763d510fc9c3ce2466274a57 "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmr7.pfb" 1254938640 121145 68312a933e2c689ed40ec0aba373e279 "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmr9.pfb" 1254938640 121065 50bbfa703ce7e11638752ef5a6d120c7 "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmri10.pfb" 1254938640 112593 fda2373ba4420af33949610de4c28fe8 "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmsy10.pfb" 1254938640 27863 09ce3735688ffde955e72da27c95b61a "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmsy7.pfb" 1254938640 27941 d1f5d03f61a46c3fcc3a2ba904ddda52 "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmtk10.pfb" 1254938640 117319 7f8361f845845ce6d5b36cbd9f9cf377 "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmtt10.pfb" 1254938640 113227 1010e11451afc2822c95dae77c390042 "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmtt8.pfb" 1254938640 115291 2ae7034c644e971beb573b1e6606f863 "" | ||||
|   "/usr/share/texmf/fonts/type1/public/lm/lmtt9.pfb" 1254938640 108480 ee1de99df36ee0a16b36023b9c9d8a58 "" | ||||
|   "/usr/share/texmf/tex/latex/lm/lmodern.sty" 1256929440 1606 c17281c7cff2bbd7ff0173e1433487ec "" | ||||
|   "/usr/share/texmf/tex/latex/lm/omllmm.fd" 1256929440 888 44447a3a3af84a22454ef89500942d93 "" | ||||
|   "/usr/share/texmf/tex/latex/lm/omslmsy.fd" 1256929440 805 af340a8260c447aa315cfc740ff0152f "" | ||||
|   "/usr/share/texmf/tex/latex/lm/omxlmex.fd" 1256929440 566 a94661f7b66063f191960bb7935b6ba2 "" | ||||
|   "/usr/share/texmf/tex/latex/lm/ot1lmr.fd" 1256929440 1880 bae7b659316f7344a86218ad38b01d91 "" | ||||
|   "/usr/share/texmf/tex/latex/lm/ot1lmtt.fd" 1256929440 2712 a8a977c98484ccc2dbc768e5509e3790 "" | ||||
|   "/usr/share/texmf/tex/latex/lm/t1lmr.fd" 1256929440 1865 afbfccbe7fda9c2dc5078ad7c486bbed "" | ||||
|   "/usr/share/texmf/tex/latex/lm/t1lmtt.fd" 1256929440 2681 354015af3b61e7be30009f084986375a "" | ||||
|   "/usr/share/texmf/web2c/texmf.cnf" 1435377840 31349 7675f8adfbe12aae865d340d35423a49 "" | ||||
|   "/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map" 1448651651 1779312 b2f993ff39f888114b7dddf8751f0ae0 "" | ||||
|   "/var/lib/texmf/web2c/pdftex/pdflatex.fmt" 1448651758 3845440 b767bcfad02834add06449ca1e913284 "" | ||||
|   "figures/go-ex-1.tex" 1455735441 659 8edc7f23dbe2a10e091cbb1b4fb54c5f "" | ||||
|   "figures/go-ex-2.tex" 1455735438 613 cd5bdb616fb54b341301506f66f67ae1 "" | ||||
|   "figures/go-gantt.tex" 1456592062 314 2c820ac7542278726c87f4e13e0a63d7 "" | ||||
|   "figures/life-ex-1.tex" 1455301670 746 831917a7d8d04a2cc8d6a6479a6ee58e "" | ||||
|   "figures/life-ex-2.tex" 1455734423 609 797c4b3bcd4b022ceba1d1e0961a64d8 "" | ||||
|   "figures/life-ex-3.tex" 1455301725 1534 7580ccfbc12e87d5504b7342262b6745 "" | ||||
|   "figures/life-gantt.tex" 1456604171 223 5246164ec42b8b7ad4f7a3434411b91d "" | ||||
|   "figures/ptf-gantt.tex" 1456592142 524 e9138e522d89548a375885316bd26fc4 "" | ||||
|   "figures/ptf-layering-exploded.tex" 1456437259 715 b7321c74e4e0e361ce58f5557c095c14 "" | ||||
|   "figures/ptf-layering-merged.tex" 1456437241 399 82a5f8ddb5e394e494b8c2cf537e51be "" | ||||
|   "figures/ptf-uml-diagram.tex" 1456585360 683 cd985b9697205f1f70bd0a49038850ca "" | ||||
|   "rapport.aux" 1456695565 1562 3608ee794e031d99e8fd86a777bbd855 "" | ||||
|   "rapport.bbl" 1456694154 1888 2bb2b991db78d50844e1f27c70f4576b "bibtex rapport" | ||||
|   "rapport.out" 1456695565 1251 58154cecf4373faafc4894fed01c616c "" | ||||
|   "rapport.tex" 1456677794 1321 ffecced79b9c5d6bf8b5ab3c3ea49b3f "" | ||||
|   "rapport.toc" 1456695565 2877 87fa0164e6e1c0b61528b527d8b00cb7 "" | ||||
|   (generated) | ||||
|   "parts/cmp.aux" | ||||
|   "rapport.pdf" | ||||
|   "rapport.out" | ||||
|   "./parts/cmp.aux" | ||||
|   "./parts/conclu.aux" | ||||
|   "./parts/go.aux" | ||||
|   "./parts/intro.aux" | ||||
|   "parts/life.aux" | ||||
|   "rapport.aux" | ||||
|   "./parts/life.aux" | ||||
|   "rapport.log" | ||||
|   "rapport.toc" | ||||
|   "./parts/ptf.aux" | ||||
|   "/home/matteo/Développement/se205-1/rapport/rapport.log" | ||||
|   "/home/matteo/Développement/se205-1/rapport/rapport.pdf" | ||||
|  | @ -1,421 +0,0 @@ | |||
| PWD /home/matteo/Développement/se205-1/rapport | ||||
| INPUT /etc/texmf/web2c/texmf.cnf | ||||
| INPUT /usr/share/texmf/web2c/texmf.cnf | ||||
| INPUT /usr/share/texlive/texmf-dist/web2c/texmf.cnf | ||||
| INPUT /var/lib/texmf/web2c/pdftex/pdflatex.fmt | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/rapport.tex | ||||
| OUTPUT /home/matteo/Développement/se205-1/rapport/rapport.log | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/report.cls | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/report.cls | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/size10.clo | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/size10.clo | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/utf8.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/utf8.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/t1enc.dfu | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/t1enc.dfu | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/ot1enc.dfu | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/ot1enc.dfu | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/omsenc.dfu | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/omsenc.dfu | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/t1enc.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/t1enc.def | ||||
| INPUT /usr/share/texlive/texmf-dist/fonts/map/fontname/texfonts.map | ||||
| INPUT /usr/share/texlive/texmf-dist/fonts/tfm/jknappen/ec/ecrm1000.tfm | ||||
| INPUT /usr/share/texmf/tex/latex/lm/lmodern.sty | ||||
| INPUT /usr/share/texmf/tex/latex/lm/lmodern.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/babel-french/frenchb.ldf | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/babel-french/frenchb.ldf | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/babel/babel.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/carlisle/scalefnt.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/carlisle/scalefnt.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/auxhook.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/auxhook.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/hyperref.cfg | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/hyperref.cfg | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/url/url.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/url/url.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/wrapfig/wrapfig.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/wrapfig/wrapfig.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/ms/everyshi.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/ms/everyshi.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pdftex-def/pdftex.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pdftex-def/pdftex.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgffor.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgffor.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/math/pgfmath.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgf/math/pgfmath.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary3d.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary3d.code.tex | ||||
| INPUT /home/matteo/texmf/tex/latex/gantt/gantt.sty | ||||
| INPUT /home/matteo/texmf/tex/latex/gantt/gantt.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkeyval.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkvutils.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/tools/calc.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/tools/calc.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/forloop/forloop.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/forloop/forloop.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarypatterns.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarypatterns.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibrarypatterns.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibrarypatterns.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryarrows.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryarrows.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.code.tex | ||||
| INPUT /home/matteo/texmf/tex/latex/tikz-uml/tikz-uml.sty | ||||
| INPUT /home/matteo/texmf/tex/latex/tikz-uml/tikz-uml.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/xstring/xstring.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgfopts/pgfopts.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/pgfopts/pgfopts.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybackgrounds.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarybackgrounds.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.geometric.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.geometric.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.geometric.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.geometric.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.misc.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.misc.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.misc.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.misc.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.symbols.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.symbols.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.symbols.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.symbols.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.arrows.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.arrows.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.arrows.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.arrows.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.callouts.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.callouts.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.callouts.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.callouts.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.multipart.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshapes.multipart.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.multipart.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibraryshapes.multipart.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfit.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfit.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshadows.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryshadows.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfadings.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfadings.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code.tex | ||||
| OUTPUT /home/matteo/Développement/se205-1/rapport/rapport.pdf | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.markings.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.markings.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.markings.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.markings.code.tex | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/xifthen/xifthen.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/xifthen/xifthen.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/etex-pkg/etex.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/etex-pkg/etex.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/ifmtarg/ifmtarg.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/ifmtarg/ifmtarg.sty | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/rapport.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/rapport.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/intro.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/intro.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/life.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/life.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/go.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/go.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/ptf.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/ptf.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/cmp.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/cmp.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/conclu.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/conclu.aux | ||||
| OUTPUT /home/matteo/Développement/se205-1/rapport/rapport.aux | ||||
| INPUT /usr/share/texmf/tex/latex/lm/t1lmr.fd | ||||
| INPUT /usr/share/texmf/tex/latex/lm/t1lmr.fd | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmr10.tfm | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/gettitlestring.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/generic/oberdiek/gettitlestring.sty | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/rapport.out | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/rapport.out | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/rapport.out | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/rapport.out | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/rapport.out | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/rapport.out | ||||
| OUTPUT /home/matteo/Développement/se205-1/rapport/rapport.out | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/context/base/supp-pdf.mkii | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/context/base/supp-pdf.mkii | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/grfext.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/oberdiek/grfext.sty | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg | ||||
| INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmr17.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmr12.tfm | ||||
| INPUT /usr/share/texmf/tex/latex/lm/ot1lmr.fd | ||||
| INPUT /usr/share/texmf/tex/latex/lm/ot1lmr.fd | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/rm-lmr12.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/rm-lmr8.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/rm-lmr6.tfm | ||||
| INPUT /usr/share/texmf/tex/latex/lm/omllmm.fd | ||||
| INPUT /usr/share/texmf/tex/latex/lm/omllmm.fd | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmmi12.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmmi8.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmmi6.tfm | ||||
| INPUT /usr/share/texmf/tex/latex/lm/omslmsy.fd | ||||
| INPUT /usr/share/texmf/tex/latex/lm/omslmsy.fd | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmsy10.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmsy8.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmsy6.tfm | ||||
| INPUT /usr/share/texmf/tex/latex/lm/omxlmex.fd | ||||
| INPUT /usr/share/texmf/tex/latex/lm/omxlmex.fd | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmex10.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmcsc10.tfm | ||||
| INPUT /var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmr17.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmbx12.tfm | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/rapport.toc | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/rapport.toc | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmbx10.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/rm-lmr10.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/rm-lmr7.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/rm-lmr5.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmmi10.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmmi7.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmmi5.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmsy10.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmsy7.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmsy5.tfm | ||||
| OUTPUT /home/matteo/Développement/se205-1/rapport/rapport.toc | ||||
| OUTPUT /home/matteo/Développement/se205-1/rapport/./parts/intro.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/intro.tex | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/intro.tex | ||||
| OUTPUT /home/matteo/Développement/se205-1/rapport/./parts/life.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/life.tex | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/life.tex | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmr17.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmbx12.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmr12.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmbx12.tfm | ||||
| INPUT ./figures/life-ex-1.tex | ||||
| INPUT ./figures/life-ex-1.tex | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmcsc10.tfm | ||||
| INPUT ./figures/life-ex-2.tex | ||||
| INPUT ./figures/life-ex-2.tex | ||||
| INPUT ./figures/life-ex-3.tex | ||||
| INPUT ./figures/life-ex-3.tex | ||||
| INPUT /usr/share/texmf/tex/latex/lm/t1lmtt.fd | ||||
| INPUT /usr/share/texmf/tex/latex/lm/t1lmtt.fd | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmtt10.tfm | ||||
| INPUT /usr/share/texmf/tex/latex/lm/ot1lmtt.fd | ||||
| INPUT /usr/share/texmf/tex/latex/lm/ot1lmtt.fd | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/rm-lmtt10.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/rm-lmtt8.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/rm-lmtt8.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmbx12.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmri10.tfm | ||||
| INPUT ./figures/life-gantt.tex | ||||
| INPUT ./figures/life-gantt.tex | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmr9.tfm | ||||
| OUTPUT /home/matteo/Développement/se205-1/rapport/./parts/go.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/go.tex | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/go.tex | ||||
| INPUT ./figures/go-ex-1.tex | ||||
| INPUT ./figures/go-ex-1.tex | ||||
| INPUT ./figures/go-ex-2.tex | ||||
| INPUT ./figures/go-ex-2.tex | ||||
| INPUT ./figures/go-gantt.tex | ||||
| INPUT ./figures/go-gantt.tex | ||||
| OUTPUT /home/matteo/Développement/se205-1/rapport/./parts/ptf.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/ptf.tex | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/ptf.tex | ||||
| INPUT ./figures/ptf-uml-diagram.tex | ||||
| INPUT ./figures/ptf-uml-diagram.tex | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/rm-lmr9.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmmi9.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/lmsy9.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/rm-lmtt9.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/rm-lmtt8.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmbx9.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmtt9.tfm | ||||
| INPUT /usr/share/texmf/fonts/tfm/public/lm/ec-lmtk10.tfm | ||||
| INPUT ./figures/ptf-layering-exploded.tex | ||||
| INPUT ./figures/ptf-layering-exploded.tex | ||||
| INPUT ./figures/ptf-layering-merged.tex | ||||
| INPUT ./figures/ptf-layering-merged.tex | ||||
| INPUT ./figures/ptf-gantt.tex | ||||
| INPUT ./figures/ptf-gantt.tex | ||||
| OUTPUT /home/matteo/Développement/se205-1/rapport/./parts/cmp.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/cmp.tex | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/cmp.tex | ||||
| OUTPUT /home/matteo/Développement/se205-1/rapport/./parts/conclu.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/conclu.tex | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/conclu.tex | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/rapport.bbl | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/rapport.bbl | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/rapport.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/intro.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/intro.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/life.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/life.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/go.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/go.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/ptf.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/ptf.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/cmp.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/cmp.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/conclu.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/./parts/conclu.aux | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/rapport.out | ||||
| INPUT /home/matteo/Développement/se205-1/rapport/rapport.out | ||||
| INPUT /usr/share/texmf/fonts/enc/dvips/lm/lm-rm.enc | ||||
| INPUT /usr/share/texmf/fonts/enc/dvips/lm/lm-rmtt.enc | ||||
| INPUT /usr/share/texmf/fonts/enc/dvips/lm/lm-ec.enc | ||||
| INPUT /usr/share/texmf/fonts/enc/dvips/lm/lm-mathsy.enc | ||||
| INPUT /usr/share/texmf/fonts/enc/dvips/lm/lm-mathit.enc | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmbx10.pfb | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmbx12.pfb | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmbx9.pfb | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmcsc10.pfb | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmmi10.pfb | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmr10.pfb | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmr12.pfb | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmr17.pfb | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmr5.pfb | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmr7.pfb | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmr9.pfb | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmri10.pfb | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmsy10.pfb | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmsy7.pfb | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmtk10.pfb | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmtt10.pfb | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmtt8.pfb | ||||
| INPUT /usr/share/texmf/fonts/type1/public/lm/lmtt9.pfb | ||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							|  | @ -1,22 +0,0 @@ | |||
| \BOOKMARK [0][-]{chapter*.2}{Introduction}{}% 1 | ||||
| \BOOKMARK [0][-]{chapter.1}{Jeu de la vie}{}% 2 | ||||
| \BOOKMARK [1][-]{section.1.1}{Principes}{chapter.1}% 3 | ||||
| \BOOKMARK [1][-]{section.1.2}{Mod\351lisation}{chapter.1}% 4 | ||||
| \BOOKMARK [1][-]{section.1.3}{Algorithmes}{chapter.1}% 5 | ||||
| \BOOKMARK [1][-]{section.1.4}{Sp\351cifications}{chapter.1}% 6 | ||||
| \BOOKMARK [1][-]{section.1.5}{Organisation}{chapter.1}% 7 | ||||
| \BOOKMARK [0][-]{chapter.2}{Jeu de go}{}% 8 | ||||
| \BOOKMARK [1][-]{section.2.1}{Principes}{chapter.2}% 9 | ||||
| \BOOKMARK [1][-]{section.2.2}{Mod\351lisation}{chapter.2}% 10 | ||||
| \BOOKMARK [1][-]{section.2.3}{Algorithmes}{chapter.2}% 11 | ||||
| \BOOKMARK [1][-]{section.2.4}{Sp\351cifications}{chapter.2}% 12 | ||||
| \BOOKMARK [1][-]{section.2.5}{Organisation}{chapter.2}% 13 | ||||
| \BOOKMARK [0][-]{chapter.3}{Jeu de plateformes coop\351ratif}{}% 14 | ||||
| \BOOKMARK [1][-]{section.3.1}{Principes}{chapter.3}% 15 | ||||
| \BOOKMARK [1][-]{section.3.2}{Mod\351lisation}{chapter.3}% 16 | ||||
| \BOOKMARK [1][-]{section.3.3}{Algorithmes}{chapter.3}% 17 | ||||
| \BOOKMARK [1][-]{section.3.4}{Sp\351cifications}{chapter.3}% 18 | ||||
| \BOOKMARK [1][-]{section.3.5}{Organisation}{chapter.3}% 19 | ||||
| \BOOKMARK [0][-]{chapter*.3}{\311tude comparative}{}% 20 | ||||
| \BOOKMARK [0][-]{chapter*.4}{Conclusion}{}% 21 | ||||
| \BOOKMARK [0][-]{section*.5}{Webographie}{}% 22 | ||||
										
											Binary file not shown.
										
									
								
							|  | @ -1,38 +0,0 @@ | |||
| \select@language {french} | ||||
| \contentsline {chapter}{Introduction}{2}{chapter*.2} | ||||
| \contentsline {chapter}{\numberline {1}Jeu de la vie}{3}{chapter.1} | ||||
| \contentsline {section}{\numberline {1.1}Principes}{3}{section.1.1} | ||||
| \contentsline {section}{\numberline {1.2}Mod\IeC {\'e}lisation}{5}{section.1.2} | ||||
| \contentsline {section}{\numberline {1.3}Algorithmes}{5}{section.1.3} | ||||
| \contentsline {section}{\numberline {1.4}Sp\IeC {\'e}cifications}{6}{section.1.4} | ||||
| \contentsline {subsection}{\numberline {1.4.1}Version initiale}{6}{subsection.1.4.1} | ||||
| \contentsline {subsection}{\numberline {1.4.2}Am\IeC {\'e}liorations possibles}{6}{subsection.1.4.2} | ||||
| \contentsline {section}{\numberline {1.5}Organisation}{7}{section.1.5} | ||||
| \contentsline {chapter}{\numberline {2}Jeu de go}{8}{chapter.2} | ||||
| \contentsline {section}{\numberline {2.1}Principes}{8}{section.2.1} | ||||
| \contentsline {subsection}{\numberline {2.1.1}Mat\IeC {\'e}riel}{8}{subsection.2.1.1} | ||||
| \contentsline {subsection}{\numberline {2.1.2}R\IeC {\`e}gles}{8}{subsection.2.1.2} | ||||
| \contentsline {subsection}{\numberline {2.1.3}Fin du jeu}{9}{subsection.2.1.3} | ||||
| \contentsline {section}{\numberline {2.2}Mod\IeC {\'e}lisation}{9}{section.2.2} | ||||
| \contentsline {section}{\numberline {2.3}Algorithmes}{10}{section.2.3} | ||||
| \contentsline {section}{\numberline {2.4}Sp\IeC {\'e}cifications}{11}{section.2.4} | ||||
| \contentsline {subsection}{\numberline {2.4.1}Version initiale}{11}{subsection.2.4.1} | ||||
| \contentsline {subsection}{\numberline {2.4.2}Am\IeC {\'e}liorations possibles}{12}{subsection.2.4.2} | ||||
| \contentsline {section}{\numberline {2.5}Organisation}{12}{section.2.5} | ||||
| \contentsline {chapter}{\numberline {3}Jeu de plateformes coop\IeC {\'e}ratif}{13}{chapter.3} | ||||
| \contentsline {section}{\numberline {3.1}Principes}{13}{section.3.1} | ||||
| \contentsline {subsection}{\numberline {3.1.1}Joueurs}{14}{subsection.3.1.1} | ||||
| \contentsline {subsection}{\numberline {3.1.2}Cam\IeC {\'e}ra}{14}{subsection.3.1.2} | ||||
| \contentsline {subsection}{\numberline {3.1.3}Blocs}{14}{subsection.3.1.3} | ||||
| \contentsline {section}{\numberline {3.2}Mod\IeC {\'e}lisation}{15}{section.3.2} | ||||
| \contentsline {section}{\numberline {3.3}Algorithmes}{16}{section.3.3} | ||||
| \contentsline {subsection}{\numberline {3.3.1}Physique}{16}{subsection.3.3.1} | ||||
| \contentsline {subsection}{\numberline {3.3.2}Dessin}{17}{subsection.3.3.2} | ||||
| \contentsline {subsection}{\numberline {3.3.3}Moteur}{17}{subsection.3.3.3} | ||||
| \contentsline {section}{\numberline {3.4}Sp\IeC {\'e}cifications}{17}{section.3.4} | ||||
| \contentsline {subsection}{\numberline {3.4.1}Version initiale}{17}{subsection.3.4.1} | ||||
| \contentsline {subsection}{\numberline {3.4.2}Am\IeC {\'e}liorations possibles}{19}{subsection.3.4.2} | ||||
| \contentsline {section}{\numberline {3.5}Organisation}{19}{section.3.5} | ||||
| \contentsline {chapter}{\IeC {\'E}tude comparative}{21}{chapter*.3} | ||||
| \contentsline {chapter}{Conclusion}{22}{chapter*.4} | ||||
| \contentsline {chapter}{Webographie}{23}{section*.5} | ||||
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 7.7 KiB | 
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 3.2 KiB | 
|  | @ -9,7 +9,7 @@ | |||
| class Ball : public Object { | ||||
| private: | ||||
|     sf::Texture texture; | ||||
|     sf::CircleShape shape; | ||||
|     sf::RectangleShape shape; | ||||
| 
 | ||||
| protected: | ||||
|     /**
 | ||||
|  | @ -31,11 +31,17 @@ public: | |||
|     std::unique_ptr<sf::FloatRect> getAABB(); | ||||
| 
 | ||||
|     /**
 | ||||
|      * Calcule la normale de la collision de cet objet avec un autre | ||||
|      * Calcule les informations sur une éventuelle collision de | ||||
|      * cet objet avec un autre : la normale et la profondeur | ||||
|      */ | ||||
|     virtual bool getNormal(Object& obj, sf::Vector2f& normal); | ||||
|     virtual bool getNormal(Ball& obj, sf::Vector2f& normal); | ||||
|     virtual bool getNormal(Block& obj, sf::Vector2f& normal); | ||||
|     virtual bool getCollisionInfo(Object& obj, sf::Vector2f& normal, float& depth); | ||||
|     virtual bool getCollisionInfo(Ball& obj, sf::Vector2f& normal, float& depth); | ||||
|     virtual bool getCollisionInfo(Block& obj, sf::Vector2f& normal, float& depth); | ||||
| 
 | ||||
|     /**
 | ||||
|      * Renvoie le rayon de la balle | ||||
|      */ | ||||
|     float getRadius(); | ||||
| }; | ||||
| 
 | ||||
| #endif | ||||
|  |  | |||
|  | @ -25,11 +25,12 @@ public: | |||
|     std::unique_ptr<sf::FloatRect> getAABB(); | ||||
| 
 | ||||
|     /**
 | ||||
|      * Calcule la normale de la collision de cet objet avec un autre | ||||
|      * Calcule les informations sur une éventuelle collision de | ||||
|      * cet objet avec un autre : la normale et la profondeur | ||||
|      */ | ||||
|     virtual bool getNormal(Object& obj, sf::Vector2f& normal); | ||||
|     virtual bool getNormal(Ball& obj, sf::Vector2f& normal); | ||||
|     virtual bool getNormal(Block& obj, sf::Vector2f& normal); | ||||
|     virtual bool getCollisionInfo(Object& obj, sf::Vector2f& normal, float& depth); | ||||
|     virtual bool getCollisionInfo(Ball& obj, sf::Vector2f& normal, float& depth); | ||||
|     virtual bool getCollisionInfo(Block& obj, sf::Vector2f& normal, float& depth); | ||||
| }; | ||||
| 
 | ||||
| #endif | ||||
|  |  | |||
|  | @ -7,14 +7,14 @@ namespace Constants { | |||
|      * pour le calcul de l'attraction coulombienne entre | ||||
|      * deux objets | ||||
|      */ | ||||
|     static constexpr float ATTRACTION = 2000; | ||||
|     static constexpr float ATTRACTION = 2000000; | ||||
| 
 | ||||
|     /**
 | ||||
|      * Constante de déplacement. Définit la quantité de | ||||
|      * mouvement qui est donnée à un objet lorsqu'il | ||||
|      * est manipulé manuellement par le joueur | ||||
|      */ | ||||
|     static constexpr float MOVE = 100; | ||||
|     static constexpr float MOVE = 200; | ||||
| 
 | ||||
|     /**
 | ||||
|      * Constante de gravité. Utilisée dans la formule | ||||
|  | @ -22,12 +22,50 @@ namespace Constants { | |||
|      * uniformément vers le bas de la fenêtre sur tous | ||||
|      * les objets | ||||
|      */ | ||||
|     static constexpr float GRAVITY = 200; | ||||
|     static constexpr float GRAVITY = 235; | ||||
| 
 | ||||
|     /**
 | ||||
|      * Taille de la grille des blocs en pixels | ||||
|      */ | ||||
|     static constexpr float GRID = 32; | ||||
| 
 | ||||
|     /**
 | ||||
|      * Activation du débogage (affichage des vecteurs) | ||||
|      */ | ||||
|     static constexpr bool DEBUG_MODE = false; | ||||
| 
 | ||||
|     /**
 | ||||
|      * Durée fixe d'une étape de simulation physique | ||||
|      */ | ||||
|     static constexpr float PHYSICS_TIME = 1.f / 60; | ||||
| 
 | ||||
|     /**
 | ||||
|      * Correction positionnelle : pourcentage de correction | ||||
|      * et seuil de correction | ||||
|      */ | ||||
|     static constexpr float CORRECTION_PERCENTAGE = 1; | ||||
|     static constexpr float CORRECTION_THRESHOLD = .0001f; | ||||
| 
 | ||||
|     /**
 | ||||
|      * Masse par défaut d'un objet | ||||
|      */ | ||||
|     static constexpr float DEFAULT_MASS = 1.f; | ||||
| 
 | ||||
|     /**
 | ||||
|      * Charge par défaut d'un objet | ||||
|      */ | ||||
|     static constexpr float DEFAULT_CHARGE = 0.f; | ||||
| 
 | ||||
|     /**
 | ||||
|      * Coefficient de restitution par défaut | ||||
|      */ | ||||
|     static constexpr float DEFAULT_RESTITUTION = 0.4f; | ||||
| 
 | ||||
|     /**
 | ||||
|      * Couche par défaut d'affichage d'un objet | ||||
|      * (peut être modifié objet par objet) | ||||
|      */ | ||||
|     static constexpr int DEFAULT_LAYER = 10; | ||||
| } | ||||
| 
 | ||||
| #endif | ||||
|  |  | |||
|  | @ -16,9 +16,8 @@ class Object; | |||
| struct EngineState { | ||||
|     std::vector<Object*> objects; | ||||
|     std::array<bool, sf::Keyboard::KeyCount> keys; | ||||
|     float delta; | ||||
| 
 | ||||
|     EngineState() : delta(0.f) { | ||||
|     EngineState() { | ||||
|         // aucune touche n'est enfoncée au démarrage
 | ||||
|         keys.fill(false); | ||||
|     } | ||||
|  |  | |||
|  | @ -49,11 +49,19 @@ public: | |||
|     virtual std::unique_ptr<sf::FloatRect> getAABB() = 0; | ||||
| 
 | ||||
|     /**
 | ||||
|      * Calcule la normale de la collision de cet objet avec un autre | ||||
|      * Calcule les informations sur une éventuelle collision de | ||||
|      * cet objet avec un autre : la normale et la profondeur | ||||
|      */ | ||||
|     virtual bool getNormal(Object& obj, sf::Vector2f& normal); | ||||
|     virtual bool getNormal(Ball& obj, sf::Vector2f& normal) = 0; | ||||
|     virtual bool getNormal(Block& obj, sf::Vector2f& normal) = 0; | ||||
|     virtual bool getCollisionInfo(Object& obj, sf::Vector2f& normal, float& depth); | ||||
|     virtual bool getCollisionInfo(Ball& obj, sf::Vector2f& normal, float& depth) = 0; | ||||
|     virtual bool getCollisionInfo(Block& obj, sf::Vector2f& normal, float& depth) = 0; | ||||
| 
 | ||||
|     /**
 | ||||
|      * Détecte s'il y a collision entre cet objet | ||||
|      * et l'objet passé en paramètre et résoud la collision | ||||
|      * si elle a lieu | ||||
|      */ | ||||
|     void collide(Object& obj); | ||||
| 
 | ||||
|     /**
 | ||||
|      * Récupère l'accélération de l'objet | ||||
|  | @ -76,6 +84,12 @@ public: | |||
|      */ | ||||
|     sf::Vector2f getPosition(); | ||||
| 
 | ||||
|     /**
 | ||||
|      * Modifie la position de l'objet | ||||
|      * (à utiliser avec précaution, préférer modifier les forces) | ||||
|      */ | ||||
|     void setPosition(sf::Vector2f set_position); | ||||
| 
 | ||||
|     /**
 | ||||
|      * Récupère la masse de l'objet | ||||
|      */ | ||||
|  |  | |||
							
								
								
									
										82
									
								
								src/ball.cpp
								
								
								
								
							
							
						
						
									
										82
									
								
								src/ball.cpp
								
								
								
								
							|  | @ -2,9 +2,11 @@ | |||
| #include "block.hpp" | ||||
| #include "constants.hpp" | ||||
| #include <array> | ||||
| #include <iostream> | ||||
| 
 | ||||
| Ball::Ball(float x, float y) : Object(x, y), shape(10) { | ||||
|     shape.setOrigin(sf::Vector2f(10, 10)); | ||||
| Ball::Ball(float x, float y) : Object(x, y), | ||||
|     shape(sf::Vector2f(2 * getRadius(), 2 * getRadius())) { | ||||
|     shape.setOrigin(sf::Vector2f(getRadius(), getRadius())); | ||||
| } | ||||
| 
 | ||||
| sf::Vector2f Ball::getForces(EngineState& state) { | ||||
|  | @ -19,50 +21,18 @@ sf::Vector2f Ball::getForces(EngineState& state) { | |||
|         forces += sf::Vector2f(Constants::MOVE, 0); | ||||
|     } | ||||
| 
 | ||||
|     // force d'attraction entre les balles et les blocs chargés
 | ||||
|     if (getCharge() != 0) { | ||||
|         for (unsigned int j = 0; j < state.objects.size(); j++) { | ||||
|             Object *attractive = state.objects[j]; | ||||
| 
 | ||||
|             if (attractive == this || attractive->getCharge() == 0) { | ||||
|                 continue; | ||||
|             } | ||||
| 
 | ||||
|             // vecteur allant de l'objet attirant vers l'objet considéré
 | ||||
|             sf::Vector2f attraction(getPosition() - attractive->getPosition()); | ||||
| 
 | ||||
|             // la norme de ce vecteur est la distance entre les objets
 | ||||
|             float distanceSquared = attraction.x * attraction.x + | ||||
|                 attraction.y * attraction.y; | ||||
| 
 | ||||
|             // éviter la division par zéro
 | ||||
|             if (distanceSquared == 0) { | ||||
|                 continue; | ||||
|             } | ||||
| 
 | ||||
|             // normalisation du vecteur direction qui porte
 | ||||
|             // la force d'attraction, puis application de la norme
 | ||||
|             attraction /= std::sqrt(distanceSquared); | ||||
|             attraction *= Constants::ATTRACTION * ( | ||||
|                 (getCharge() * attractive->getCharge()) / | ||||
|                 distanceSquared | ||||
|             ); | ||||
| 
 | ||||
|             forces += attraction; | ||||
|         } | ||||
|     } | ||||
| 
 | ||||
|     return forces; | ||||
| } | ||||
| 
 | ||||
| void Ball::draw(sf::RenderWindow& window) { | ||||
|     Object::draw(window); | ||||
| 
 | ||||
| 	// chargement de la texture de test
 | ||||
| 	if (!texture.loadFromFile("./res/ball.png")) { | ||||
|     // chargement de la texture de test
 | ||||
|     if (!texture.loadFromFile("./res/ball.png")) { | ||||
|     	// erreur
 | ||||
| 	} | ||||
|     } | ||||
| 
 | ||||
|     shape.rotate(getVelocity().x * .1f); | ||||
| 	shape.setTexture(&texture); | ||||
|     shape.setPosition(getPosition()); | ||||
|     window.draw(shape); | ||||
|  | @ -70,24 +40,24 @@ void Ball::draw(sf::RenderWindow& window) { | |||
| 
 | ||||
| std::unique_ptr<sf::FloatRect> Ball::getAABB() { | ||||
|     return std::unique_ptr<sf::FloatRect>(new sf::FloatRect( | ||||
|         getPosition().x - 10, | ||||
|         getPosition().y - 10, | ||||
|         20, 20 | ||||
|         getPosition().x - getRadius(), | ||||
|         getPosition().y - getRadius(), | ||||
|         2 * getRadius(), 2 * getRadius() | ||||
|     )); | ||||
| } | ||||
| 
 | ||||
| bool Ball::getNormal(Object& obj, sf::Vector2f& normal) { | ||||
|     return obj.getNormal(*this, normal); | ||||
| bool Ball::getCollisionInfo(Object& obj, sf::Vector2f& normal, float& depth) { | ||||
|     return obj.getCollisionInfo(*this, normal, depth); | ||||
| } | ||||
| 
 | ||||
| bool Ball::getNormal(Ball& obj, sf::Vector2f& normal) { | ||||
|     sf::Vector2f dir = obj.getPosition() - getPosition(); | ||||
| bool Ball::getCollisionInfo(Ball& obj, sf::Vector2f& normal, float& depth) { | ||||
|     sf::Vector2f dir = getPosition() - obj.getPosition(); | ||||
|     float squaredLength = dir.x * dir.x + dir.y * dir.y; | ||||
|     float totalRadius = getRadius() + obj.getRadius(); | ||||
| 
 | ||||
|     // TODO: supprimer les valeurs magiques
 | ||||
|     // si les deux balles sont à une distance supérieure
 | ||||
|     // à la somme de leurs deux rayons, il n'y a pas eu collision
 | ||||
|     if (squaredLength > 20 * 20) { | ||||
|     if (squaredLength > totalRadius * totalRadius) { | ||||
|         return false; | ||||
|     } | ||||
| 
 | ||||
|  | @ -96,17 +66,19 @@ bool Ball::getNormal(Ball& obj, sf::Vector2f& normal) { | |||
|     // les balles sont sur la même position.
 | ||||
|     // Renvoie une normale apte à séparer les deux balles
 | ||||
|     if (length == 0) { | ||||
|         depth = totalRadius; | ||||
|         normal.x = 0; | ||||
|         normal.y = -1; | ||||
|         return true; | ||||
|     } | ||||
| 
 | ||||
|     // il y a eu collision
 | ||||
|     depth = totalRadius - length; | ||||
|     normal = dir / length; | ||||
|     return true; | ||||
| } | ||||
| 
 | ||||
| bool Ball::getNormal(Block& obj, sf::Vector2f& normal) { | ||||
| bool Ball::getCollisionInfo(Block& obj, sf::Vector2f& normal, float& depth) { | ||||
|     // recherche du point le plus proche du centre de la
 | ||||
|     // balle sur le bloc. On regarde la position relative
 | ||||
|     // du cercle par rapport au bloc
 | ||||
|  | @ -161,15 +133,19 @@ bool Ball::getNormal(Block& obj, sf::Vector2f& normal) { | |||
|     sf::Vector2f prenormal = relpos - closest; | ||||
|     float squaredLength = prenormal.x * prenormal.x + prenormal.y * prenormal.y; | ||||
| 
 | ||||
|     // TODO: supprimer les valeurs magiques
 | ||||
|     // si la balle est à l'extérieur et que
 | ||||
|     // la normale est plus longue que son rayon,
 | ||||
|     // il n'y a pas collision
 | ||||
|     if (!isInside && squaredLength > 20 * 20) { | ||||
|     if (!isInside && squaredLength >= getRadius() * getRadius()) { | ||||
|         return false; | ||||
|     } | ||||
| 
 | ||||
|     normal = prenormal / std::sqrt(squaredLength); | ||||
|     float length = std::sqrt(squaredLength); | ||||
|     depth = getRadius() - length; | ||||
| 
 | ||||
|     if (length != 0) { | ||||
|         normal = prenormal / length; | ||||
|     } | ||||
| 
 | ||||
|     if (isInside) { | ||||
|         normal *= -1.f; | ||||
|  | @ -177,3 +153,7 @@ bool Ball::getNormal(Block& obj, sf::Vector2f& normal) { | |||
| 
 | ||||
|     return true; | ||||
| } | ||||
| 
 | ||||
| float Ball::getRadius() { | ||||
|     return 10 * getMass(); | ||||
| } | ||||
|  |  | |||
|  | @ -41,16 +41,51 @@ std::unique_ptr<sf::FloatRect> Block::getAABB() { | |||
|     )); | ||||
| } | ||||
| 
 | ||||
| bool Block::getNormal(Object& obj, sf::Vector2f& normal) { | ||||
|     return obj.getNormal(*this, normal); | ||||
| bool Block::getCollisionInfo(Object& obj, sf::Vector2f& normal, float& depth) { | ||||
|     return obj.getCollisionInfo(*this, normal, depth); | ||||
| } | ||||
| 
 | ||||
| bool Block::getNormal(Ball& obj, sf::Vector2f& normal) { | ||||
|     // TODO: coder cette fonction
 | ||||
|     return false; | ||||
| bool Block::getCollisionInfo(Ball& obj, sf::Vector2f& normal, float& depth) { | ||||
|     // la collision Block -> Ball est la collision Ball -> Block
 | ||||
|     // avec une normale de collision retournée
 | ||||
|     bool result = obj.getCollisionInfo(*this, normal, depth); | ||||
|     normal *= -1.f; | ||||
|     return result; | ||||
| } | ||||
| 
 | ||||
| bool Block::getNormal(Block& obj, sf::Vector2f& normal) { | ||||
|     // TODO: coder cette fonction
 | ||||
|     return false; | ||||
| bool Block::getCollisionInfo(Block& obj, sf::Vector2f& normal, float& depth) { | ||||
|     std::unique_ptr<sf::FloatRect> aabb = getAABB(); | ||||
|     std::unique_ptr<sf::FloatRect> obj_aabb = obj.getAABB(); | ||||
|     sf::Vector2f relpos = getPosition() - obj.getPosition(); | ||||
| 
 | ||||
|     float overlap_x = aabb->width / 2 + obj_aabb->width / 2 - std::abs(relpos.x); | ||||
|     float overlap_y = aabb->height / 2 + obj_aabb->height / 2 - std::abs(relpos.y); | ||||
| 
 | ||||
|     // si il n'y a pas de chauvauchement sur l'axe X et Y, pas de collision
 | ||||
|     if (overlap_x <= 0 || overlap_y <= 0) { | ||||
|         return false; | ||||
|     } | ||||
| 
 | ||||
|     // on choisit l'axe de pénétration maximale pour calculer la normale
 | ||||
|     if (overlap_x < overlap_y) { | ||||
|         if (relpos.x < 0) { | ||||
|             normal.x = -1; | ||||
|         } else { | ||||
|             normal.x = 1; | ||||
|         } | ||||
| 
 | ||||
|         normal.y = 0; | ||||
|         depth = overlap_x; | ||||
|     } else { | ||||
|         if (relpos.y < 0) { | ||||
|             normal.y = -1; | ||||
|         } else { | ||||
|             normal.y = 1; | ||||
|         } | ||||
| 
 | ||||
|         normal.x = 0; | ||||
|         depth = overlap_y; | ||||
|     } | ||||
| 
 | ||||
|     return true; | ||||
| } | ||||
|  |  | |||
|  | @ -1,9 +1,10 @@ | |||
| #include "engine.hpp" | ||||
| #include "constants.hpp" | ||||
| #include <cmath> | ||||
| #include <queue> | ||||
| 
 | ||||
| Engine::Engine() : window( | ||||
|     sf::VideoMode(400, 300), "Projet CMI", | ||||
|     sf::VideoMode(704, 480), "Projet CMI", | ||||
|     sf::Style::Default & ~sf::Style::Resize, | ||||
|     sf::ContextSettings(0, 0, 2) | ||||
| ) { | ||||
|  | @ -11,6 +12,8 @@ Engine::Engine() : window( | |||
| } | ||||
| 
 | ||||
| void Engine::start() { | ||||
|     float accumulator = 0; | ||||
| 
 | ||||
|     // boucle d'événements sur la fenêtre
 | ||||
|     while (window.isOpen()) { | ||||
|         sf::Event event; | ||||
|  | @ -32,9 +35,16 @@ void Engine::start() { | |||
|             } | ||||
|         } | ||||
| 
 | ||||
|         state.delta = clock.restart().asSeconds(); | ||||
|         float frame = clock.restart().asSeconds(); | ||||
|         accumulator += frame; | ||||
| 
 | ||||
|         // tant qu'il reste du temps à passer,
 | ||||
|         // effectuer la simulation physique étape par étape
 | ||||
|         while (accumulator >= Constants::PHYSICS_TIME) { | ||||
|             accumulator -= Constants::PHYSICS_TIME; | ||||
|             update(); | ||||
|         } | ||||
| 
 | ||||
|         update(); | ||||
|         draw(); | ||||
|     } | ||||
| } | ||||
|  | @ -55,56 +65,7 @@ void Engine::update() { | |||
| 
 | ||||
|         for (unsigned int j = i + 1; j < state.objects.size(); j++) { | ||||
|             Object* objB = state.objects[j]; | ||||
| 
 | ||||
|             // si les objets ne sont pas sur la même couche,
 | ||||
|             // ils ne peuvent pas entrer en collision
 | ||||
|             if (objA->getLayer() != objB->getLayer()) { | ||||
|                 continue; | ||||
|             } | ||||
| 
 | ||||
|             // si les deux boîtes englobantes des deux objets,
 | ||||
|             // il ne risque pas d'y avoir de collision
 | ||||
|             if (!objA->getAABB()->intersects(*objB->getAABB())) { | ||||
|                 continue; | ||||
|             } | ||||
| 
 | ||||
|             sf::Vector2f normal; | ||||
| 
 | ||||
|             // vérifie plus finement s'il y a collision et
 | ||||
|             // calcule la normale
 | ||||
|             if (!objA->getNormal(*objB, normal)) { | ||||
|                 continue; | ||||
|             } | ||||
| 
 | ||||
|             sf::Vector2f codir = objB->getVelocity() - objA->getVelocity(); | ||||
|             float dotnormal = codir.x * normal.x + codir.y * normal.y; | ||||
| 
 | ||||
|             // si les directions sont divergentes, pas besoin
 | ||||
|             // de résoudre la collision
 | ||||
|             if (dotnormal >= 0) { | ||||
|                 continue; | ||||
|             } | ||||
| 
 | ||||
|             float restitution = std::min(objA->getRestitution(), objB->getRestitution()); | ||||
| 
 | ||||
|             // calcul de l'inverse des masses de A et B. Pour rappel,
 | ||||
|             // une masse infinie est modélisée par 0, donc l'inverse
 | ||||
|             // d'une telle masse est nul
 | ||||
|             float invMassA = objA->getMass(); | ||||
|             float invMassB = objB->getMass(); | ||||
| 
 | ||||
|             if (invMassA != 0) { | ||||
|                 invMassA = 1.f / invMassA; | ||||
|             } | ||||
| 
 | ||||
|             if (invMassB != 0) { | ||||
|                 invMassB = 1.f / invMassB; | ||||
|             } | ||||
| 
 | ||||
|             // calcule et applique l'impulsion de résolution de la collision
 | ||||
|             float impulse = (-(1 + restitution) * dotnormal) / (invMassA + invMassB); | ||||
|             objA->setVelocity(objA->getVelocity() - invMassA * impulse * normal); | ||||
|             objB->setVelocity(objB->getVelocity() + invMassB * impulse * normal); | ||||
|             objA->collide(*objB); | ||||
|         } | ||||
|     } | ||||
| } | ||||
|  |  | |||
							
								
								
									
										74
									
								
								src/main.cpp
								
								
								
								
							
							
						
						
									
										74
									
								
								src/main.cpp
								
								
								
								
							|  | @ -7,30 +7,60 @@ | |||
| int main() { | ||||
|     Engine engine; | ||||
| 
 | ||||
|     Ball ball(3 * Constants::GRID, 1 * Constants::GRID); | ||||
|     Block block1(3 * Constants::GRID, 6 * Constants::GRID); | ||||
|     Block block2(3 * Constants::GRID, 7 * Constants::GRID); | ||||
|     Block block3(4 * Constants::GRID, 7 * Constants::GRID); | ||||
|     Block block4(5 * Constants::GRID, 7 * Constants::GRID); | ||||
|     Block block5(6 * Constants::GRID, 7 * Constants::GRID); | ||||
|     Block block6(7 * Constants::GRID, 7 * Constants::GRID); | ||||
|     Block block7(8 * Constants::GRID, 7 * Constants::GRID); | ||||
|     Block block8(9 * Constants::GRID, 7 * Constants::GRID); | ||||
|     Block block9(9 * Constants::GRID, 6 * Constants::GRID); | ||||
|     Ball ball1(3.5f * Constants::GRID, 10 * Constants::GRID); | ||||
|     Ball ball2(18.5f * Constants::GRID, 10 * Constants::GRID); | ||||
|     Block block01(2 * Constants::GRID, 10 * Constants::GRID); | ||||
|     Block block02(2 * Constants::GRID, 11 * Constants::GRID); | ||||
|     Block block03(3 * Constants::GRID, 11 * Constants::GRID); | ||||
|     Block block04(4 * Constants::GRID, 11 * Constants::GRID); | ||||
|     Block block05(5 * Constants::GRID, 11 * Constants::GRID); | ||||
|     Block block06(6 * Constants::GRID, 11 * Constants::GRID); | ||||
|     Block block07(7 * Constants::GRID, 11 * Constants::GRID); | ||||
|     Block block08(8 * Constants::GRID, 11 * Constants::GRID); | ||||
|     Block block09(9 * Constants::GRID, 11 * Constants::GRID); | ||||
|     Block block10(10 * Constants::GRID, 11 * Constants::GRID); | ||||
|     Block block11(11 * Constants::GRID, 11 * Constants::GRID); | ||||
|     Block block12(12 * Constants::GRID, 11 * Constants::GRID); | ||||
|     Block block13(13 * Constants::GRID, 11 * Constants::GRID); | ||||
|     Block block14(14 * Constants::GRID, 11 * Constants::GRID); | ||||
|     Block block15(15 * Constants::GRID, 11 * Constants::GRID); | ||||
|     Block block16(16 * Constants::GRID, 11 * Constants::GRID); | ||||
|     Block block17(17 * Constants::GRID, 11 * Constants::GRID); | ||||
|     Block block18(18 * Constants::GRID, 11 * Constants::GRID); | ||||
|     Block block19(19 * Constants::GRID, 11 * Constants::GRID); | ||||
|     Block block20(20 * Constants::GRID, 10 * Constants::GRID); | ||||
|     Block block21(20 * Constants::GRID, 11 * Constants::GRID); | ||||
|     Block block22(11 * Constants::GRID, 10 * Constants::GRID); | ||||
| 
 | ||||
|     ball.setCharge(-2.f); | ||||
|     block5.setCharge(16.f); | ||||
|     ball1.setCharge(-.01f); | ||||
|     ball2.setCharge(-.01f); | ||||
|     block22.setCharge(1.f); | ||||
|     block22.setMass(2); | ||||
| 
 | ||||
|     engine.addObject(block1); | ||||
|     engine.addObject(block2); | ||||
|     engine.addObject(block3); | ||||
|     engine.addObject(block4); | ||||
|     engine.addObject(block5); | ||||
|     engine.addObject(block6); | ||||
|     engine.addObject(block7); | ||||
|     engine.addObject(block8); | ||||
|     engine.addObject(block9); | ||||
|     engine.addObject(ball); | ||||
|     engine.addObject(ball1); | ||||
|     engine.addObject(ball2); | ||||
|     engine.addObject(block01); | ||||
|     engine.addObject(block02); | ||||
|     engine.addObject(block03); | ||||
|     engine.addObject(block04); | ||||
|     engine.addObject(block05); | ||||
|     engine.addObject(block06); | ||||
|     engine.addObject(block07); | ||||
|     engine.addObject(block08); | ||||
|     engine.addObject(block09); | ||||
|     engine.addObject(block10); | ||||
|     engine.addObject(block11); | ||||
|     engine.addObject(block12); | ||||
|     engine.addObject(block13); | ||||
|     engine.addObject(block14); | ||||
|     engine.addObject(block15); | ||||
|     engine.addObject(block16); | ||||
|     engine.addObject(block17); | ||||
|     engine.addObject(block18); | ||||
|     engine.addObject(block19); | ||||
|     engine.addObject(block20); | ||||
|     engine.addObject(block21); | ||||
|     engine.addObject(block22); | ||||
| 
 | ||||
|     engine.start(); | ||||
|     return 0; | ||||
|  |  | |||
							
								
								
									
										126
									
								
								src/object.cpp
								
								
								
								
							
							
						
						
									
										126
									
								
								src/object.cpp
								
								
								
								
							|  | @ -5,7 +5,11 @@ Object::Object(float x, float y) : | |||
|     acceleration(0, 0), velocity(0, 0), position(x, y), | ||||
|     accelerationLine(sf::Lines, 2), | ||||
|     velocityLine(sf::Lines, 2), | ||||
|     mass(1.f), inv_mass(1.f), charge(0.f), restitution(0.f), layer(10) {} | ||||
|     mass(Constants::DEFAULT_MASS), | ||||
|     inv_mass(1.f / Constants::DEFAULT_MASS), | ||||
|     charge(Constants::DEFAULT_CHARGE), | ||||
|     restitution(Constants::DEFAULT_RESTITUTION), | ||||
|     layer(Constants::DEFAULT_LAYER) {} | ||||
| 
 | ||||
| sf::Vector2f Object::getForces(EngineState& state) { | ||||
|     sf::Vector2f forces(0, 0); | ||||
|  | @ -13,22 +17,57 @@ sf::Vector2f Object::getForces(EngineState& state) { | |||
|     // force de gravité
 | ||||
|     forces += sf::Vector2f(0, Constants::GRAVITY); | ||||
| 
 | ||||
|     // force d'attraction entre objets chargés
 | ||||
|     if (getCharge() != 0) { | ||||
|         for (unsigned int j = 0; j < state.objects.size(); j++) { | ||||
|             Object *attractive = state.objects[j]; | ||||
| 
 | ||||
|             if (attractive == this || attractive->getCharge() == 0) { | ||||
|                 continue; | ||||
|             } | ||||
| 
 | ||||
|             // vecteur allant de l'objet attracteur vers l'objet actuel
 | ||||
|             sf::Vector2f attraction(getPosition() - attractive->getPosition()); | ||||
| 
 | ||||
|             // la norme de ce vecteur est la distance entre les objets
 | ||||
|             float distanceSquared = attraction.x * attraction.x + | ||||
|                 attraction.y * attraction.y; | ||||
| 
 | ||||
|             // éviter la division par zéro
 | ||||
|             if (distanceSquared == 0) { | ||||
|                 continue; | ||||
|             } | ||||
| 
 | ||||
|             // normalisation du vecteur direction qui porte
 | ||||
|             // la force d'attraction, puis application de la norme
 | ||||
|             attraction /= std::sqrt(distanceSquared); | ||||
|             attraction *= Constants::ATTRACTION * ( | ||||
|                 (getCharge() * attractive->getCharge()) / | ||||
|                 distanceSquared | ||||
|             ); | ||||
| 
 | ||||
|             forces += attraction; | ||||
|         } | ||||
|     } | ||||
| 
 | ||||
|     return forces; | ||||
| } | ||||
| 
 | ||||
| void Object::draw(sf::RenderWindow& window) { | ||||
|     velocityLine[0].position = position; | ||||
|     velocityLine[0].color = sf::Color::Green; | ||||
|     velocityLine[1].position = position + velocity * 1.f; | ||||
|     velocityLine[1].color = sf::Color::Green; | ||||
|     if (Constants::DEBUG_MODE) { | ||||
|         velocityLine[0].position = position; | ||||
|         velocityLine[0].color = sf::Color::Green; | ||||
|         velocityLine[1].position = position + velocity * 1.f; | ||||
|         velocityLine[1].color = sf::Color::Green; | ||||
| 
 | ||||
|     accelerationLine[0].position = position; | ||||
|     accelerationLine[0].color = sf::Color::Red; | ||||
|     accelerationLine[1].position = position + acceleration * 1.f; | ||||
|     accelerationLine[1].color = sf::Color::Red; | ||||
|         accelerationLine[0].position = position; | ||||
|         accelerationLine[0].color = sf::Color::Red; | ||||
|         accelerationLine[1].position = position + acceleration * 1.f; | ||||
|         accelerationLine[1].color = sf::Color::Red; | ||||
| 
 | ||||
|     window.draw(velocityLine); | ||||
|     window.draw(accelerationLine); | ||||
|         window.draw(velocityLine); | ||||
|         window.draw(accelerationLine); | ||||
|     } | ||||
| } | ||||
| 
 | ||||
| void Object::update(EngineState& state) { | ||||
|  | @ -41,15 +80,68 @@ void Object::update(EngineState& state) { | |||
|     } | ||||
| 
 | ||||
|     // intégration de la vitesse dans la position
 | ||||
|     position += velocity * state.delta; | ||||
|     position += velocity * Constants::PHYSICS_TIME; | ||||
| 
 | ||||
|     // intégration des forces appliquées sur l'objet dans la vitesse
 | ||||
|     acceleration = getForces(state) / mass; | ||||
|     velocity += acceleration * state.delta; | ||||
|     velocity += acceleration * Constants::PHYSICS_TIME; | ||||
| } | ||||
| 
 | ||||
| bool Object::getNormal(Object& obj, sf::Vector2f& normal) { | ||||
|     return obj.getNormal(*this, normal); | ||||
| bool Object::getCollisionInfo(Object& obj, sf::Vector2f& normal, float& depth) { | ||||
|     return obj.getCollisionInfo(*this, normal, depth); | ||||
| } | ||||
| 
 | ||||
| void Object::collide(Object& obj) { | ||||
|     // si les objets ne sont pas sur la même couche,
 | ||||
|     // ils ne peuvent pas entrer en collision
 | ||||
|     if (getLayer() != obj.getLayer()) { | ||||
|         return; | ||||
|     } | ||||
| 
 | ||||
|     // si les deux boîtes englobantes des deux objets, ne
 | ||||
|     // s'intersectent pas, il ne risque pas d'y avoir de collision
 | ||||
|     if (!getAABB()->intersects(*obj.getAABB())) { | ||||
|         return; | ||||
|     } | ||||
| 
 | ||||
|     sf::Vector2f normal; | ||||
|     float depth; | ||||
| 
 | ||||
|     // vérifie plus finement s'il y a collision et récupère
 | ||||
|     // les informations sur la collision (normale et profondeur)
 | ||||
|     if (!getCollisionInfo(obj, normal, depth)) { | ||||
|         return; | ||||
|     } | ||||
| 
 | ||||
|     sf::Vector2f codir = obj.getVelocity() - getVelocity(); | ||||
|     float dotnormal = codir.x * normal.x + codir.y * normal.y; | ||||
| 
 | ||||
|     // si les directions sont divergentes, pas besoin
 | ||||
|     // de résoudre la collision
 | ||||
|     if (dotnormal >= 0) { | ||||
|         return; | ||||
|     } | ||||
| 
 | ||||
|     // calcule et applique l'impulsion de résolution de la collision
 | ||||
|     float restitution = std::min(getRestitution(), obj.getRestitution()); | ||||
|     float impulse = (-(1 + restitution) * dotnormal) / | ||||
|         (getMassInvert() + obj.getMassInvert()); | ||||
| 
 | ||||
|     setVelocity(getVelocity() - getMassInvert() * impulse * normal); | ||||
|     obj.setVelocity(obj.getVelocity() + obj.getMassInvert() * impulse * normal); | ||||
| 
 | ||||
|     // correction de la position des objets. En raison de l'imprécision
 | ||||
|     // des flottants sur la machine, les objets peuvent accumuler une
 | ||||
|     // erreur de positionnement qui les fait "plonger" les un dans les autres.
 | ||||
|     if (depth <= Constants::CORRECTION_THRESHOLD) { | ||||
|         return; | ||||
|     } | ||||
| 
 | ||||
|     sf::Vector2f positionCorrection = depth / (getMassInvert() + | ||||
|         obj.getMassInvert()) * Constants::CORRECTION_PERCENTAGE * normal; | ||||
| 
 | ||||
|     setPosition(getPosition() - getMassInvert() * positionCorrection); | ||||
|     obj.setPosition(obj.getPosition() + obj.getMassInvert() * positionCorrection); | ||||
| } | ||||
| 
 | ||||
| sf::Vector2f Object::getAcceleration() { | ||||
|  | @ -68,6 +160,10 @@ sf::Vector2f Object::getPosition() { | |||
|     return position; | ||||
| } | ||||
| 
 | ||||
| void Object::setPosition(sf::Vector2f set_position) { | ||||
|     position = set_position; | ||||
| } | ||||
| 
 | ||||
| float Object::getMass() { | ||||
|     return mass; | ||||
| } | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue