Commit cc9dda20fd01630f7a7352bafbb3e99fd2fc4457
1 parent
ff804cc49f
Exists in
main
version all ok...
Showing 5 changed files with 15 additions and 15 deletions Inline Diff
.DS_Store
View file @
cc9dda2
chapters/Architecture.tex
View file @
cc9dda2
| \chapter{Architecture Globale du Système AI-VT} | 1 | 1 | \chapter{Architecture Globale du Système AI-VT} | |
| 2 | 2 | |||
| \section{Introduction} | 3 | 3 | \section{Introduction} | |
| 4 | 4 | |||
| Il est important de définir et décrire l'architecture logicielle d'un système complexe afin de mieux comprendre son fonctionnement. L'architecture montre les composants, les couches, les fonctionnalités et les interactions. Ce chapitre présente l'architecture modulaire proposée pour le système AI-VT. Les modules intègrent des outils issus de différents paradigmes, des modèles et des algorithmes d'intelligence artificielle permettant au système d'être plus performant. Les objectifs de l'architecture proposée sont de rendre le logiciel AI-VT (Artificial Intelligence Virtual Trainer) stable, évolutif, performant et facile à entretenir. L'architecture proposée se compose de quatre couches indépendantes, chacune dédiée à une fonctionnalité spécifique : correction automatique, identification, révision et test. Le contenu de ce chapitre a été publié dans \textit{et al.} \cite{10.1007/978-3-031-63646-2_13}. | 5 | 5 | Il est important de définir et décrire l'architecture logicielle d'un système complexe afin de mieux comprendre son fonctionnement. L'architecture montre les composants, les couches, les fonctionnalités et les interactions. Ce chapitre présente l'architecture modulaire proposée pour le système AI-VT. Les modules intègrent des outils issus de différents paradigmes, des modèles et des algorithmes d'intelligence artificielle permettant au système d'être plus performant. Les objectifs de l'architecture proposée sont de rendre le logiciel AI-VT (Artificial Intelligence Virtual Trainer) stable, évolutif, performant et facile à entretenir. L'architecture proposée se compose de quatre couches indépendantes, chacune dédiée à une fonctionnalité spécifique : correction automatique, identification, révision et test. Le contenu de ce chapitre a été publié dans \textit{et al.} \cite{10.1007/978-3-031-63646-2_13}. | |
| 6 | 6 | |||
| Il est possible de classer les architectures selon deux catégories : les architectures monolithiques et les architectures modulaires. Dans une architecture monolithique, le système logiciel est considéré comme une entité unique et unitaire avec une seule source de code, une seule base de données et un seul déploiement pour l'ensemble du système ; ce type de système est simple à développer et à tester mais il est peu adapté à la mise à jour et à l'évolution en raison de sa rigidité. Une architecture modulaire divise le système en modules indépendants qui peuvent communiquer entre eux, chaque module contenant alors tout ce qui est nécessaire pour fonctionner. De nombreux systèmes logiciels ont été conçus avec une architecture modulaire en raison des multiples avantages qu'elle présente \cite{Auer} \cite{jmse10040464}. | 7 | 7 | Il est possible de classer les architectures selon deux catégories : les architectures monolithiques et les architectures modulaires. Dans une architecture monolithique, le système logiciel est considéré comme une entité unique et unitaire avec une seule source de code, une seule base de données et un seul déploiement pour l'ensemble du système. Ce type de système est simple à développer et à tester mais il est peu adapté à la mise à jour et à l'évolution en raison de sa rigidité. Une architecture modulaire divise le système en modules indépendants qui peuvent communiquer entre eux, chaque module contenant alors tout ce qui est nécessaire pour fonctionner. De nombreux systèmes logiciels ont été conçus avec une architecture modulaire en raison des multiples avantages qu'elle présente \cite{Auer} \cite{jmse10040464}. | |
| 8 | 8 | |||
| L'EIAH AI-VT a ainsi évolué vers une architecture modulaire que nous présentons dans ce chapitre. Après avoir rappelé le fonctionnement et les différents composants initiaux du système AI-VT, ce chapitre présente l'architecture modulaire implémentée lors de cette thèse et permettant à AI-VT d'intégrer de nouvelles fonctionnalités. La section 5.2 décrit le système AI-VT qui a été développé et qui existait avant le début de cette thèse. | 9 | 9 | L'EIAH AI-VT a ainsi évolué vers une architecture modulaire que nous présentons dans ce chapitre. Après avoir rappelé le fonctionnement et les différents composants initiaux du système AI-VT, ce chapitre présente l'architecture modulaire implémentée lors de cette thèse et permettant à AI-VT d'intégrer de nouvelles fonctionnalités. La section 5.2 décrit le système AI-VT qui a été développé et qui existait avant le début de cette thèse. | |
| 10 | 10 | |||
| %\textcolor{red}{penser à bien expliciter ce qui existait avant, et ce que tu as développé et ce qui est en cours} | 11 | 11 | %\textcolor{red}{penser à bien expliciter ce qui existait avant, et ce que tu as développé et ce qui est en cours} | |
| 12 | 12 | |||
| %---------------------------------------------------------------------------------------- | 13 | 13 | %---------------------------------------------------------------------------------------- | |
| % SECTION 2 | 14 | 14 | % SECTION 2 | |
| %---------------------------------------------------------------------------------------- | 15 | 15 | %---------------------------------------------------------------------------------------- | |
| 16 | 16 | |||
| \section{Description du système AI-VT} | 17 | 17 | \section{Description du système AI-VT} | |
| 18 | 18 | |||
| Pour rappel, le système AI-VT est un outil pédagogique générique qui vise à accompagner les apprenants dans leur apprentissage en leur proposant des fiches d'exercices appelées sessions. Durant chaque session, les capacités attendues sont divisées en compétences, elles-mêmes divisées en sous-compétences. L'apprenant choisit une compétence à travailler et le système génère une session composée d'exercices associés à plusieurs sous-compétences de la compétence choisie. Le système propose une liste d'exercices au début d'une session en utilisant le paradigme du raisonnement à partir de cas avec une base de données de questions. | 19 | 19 | Pour rappel, le système AI-VT est un outil pédagogique générique qui vise à accompagner les apprenants dans leur apprentissage en leur proposant des fiches d'exercices appelées sessions. Durant chaque session, les capacités attendues sont divisées en compétences, elles-mêmes divisées en sous-compétences. L'apprenant choisit une compétence à travailler et le système génère une session composée d'exercices associés à plusieurs sous-compétences de la compétence choisie. Le système propose une liste d'exercices au début d'une session en utilisant le paradigme du raisonnement à partir de cas avec une base de données de questions. | |
| 20 | 20 | |||
| Le système AI-VT est un EIAH générique dont la structure globale est présentée sur la figure \figref{figSys1}. Il intègre une base de données de questions. Chacune des questions est associée à un contexte, au texte de la question considérée et à un niveau de complexité. Les questions sont liées à des sous-compétences, elles-mêmes liées à des compétences. Les principaux acteurs du système sont l'enseignant et l'apprenant. L'enseignant a la capacité de configurer l'ensemble du système, le nombre de compétences, les sous-compétences d'une compétence, le nombre de questions, la complexité de chacune d'entre elles, le niveau de complexité et le temps par session. L'apprenant quant à lui, peut commencer l'entraînement d'une compétence spécifique, accéder à des ressources de soutien complémentaires et répondre aux questions de test dans les sessions proposées par le système. Le tableau \ref{tabDesc} montre les caractéristiques du système AI-VT selon les 20 descripteurs permettant de caractériser le profil de l'apprenant décrits dans \cite{Daubias2011}. | 21 | 21 | Le système AI-VT est un EIAH générique dont la structure globale est présentée sur la figure \figref{figSys1}. Il intègre une base de données de questions. Chacune des questions est associée à un contexte, au texte de la question considérée et à un niveau de complexité. Les questions sont liées à des sous-compétences, elles-mêmes liées à des compétences. Les principaux acteurs du système sont l'enseignant et l'apprenant. L'enseignant a la capacité de configurer l'ensemble du système, le nombre de compétences, les sous-compétences d'une compétence, le nombre de questions, la complexité de chacune d'entre elles, le niveau de complexité et le temps par session. L'apprenant quant à lui, peut commencer l'entraînement d'une compétence spécifique, accéder à des ressources de soutien complémentaires et répondre aux questions de test dans les sessions proposées par le système. Le tableau \ref{tabDesc} montre les caractéristiques du système AI-VT selon les 20 descripteurs permettant de caractériser le profil de l'apprenant décrits dans \cite{Daubias2011}. | |
| 22 | 22 | |||
| \mfigure[!ht]{width=\textwidth}{./Figures/AIVT.png}{Structure du système AI-VT}{figSys1} | 23 | 23 | \mfigure[!ht]{width=\textwidth}{./Figures/AIVT.png}{Structure du système AI-VT}{figSys1} | |
| 24 | 24 | |||
| %\begin{figure}[!ht] | 25 | 25 | %\begin{figure}[!ht] | |
| %\centering | 26 | 26 | %\centering | |
| %\includegraphics[width=\textwidth]{./Figures/AIVT.png} | 27 | 27 | %\includegraphics[width=\textwidth]{./Figures/AIVT.png} | |
| %\caption{Structure du système AI-VT} | 28 | 28 | %\caption{Structure du système AI-VT} | |
| %\label{figSys1} | 29 | 29 | %\label{figSys1} | |
| %\end{figure} | 30 | 30 | %\end{figure} | |
| 31 | 31 | |||
| En s'appuyant sur la philosophie du RàPC, le système global AI-TV part du principe que la création d'une session pour un apprenant peut être réalisé par analogie avec celles proposées à des étudiants ayant des acquis, besoins et capacités similaires. AI-VT propose une liste d'exercices en fonction de la compétence ou de la sous-compétence sélectionnée par similitude avec celles proposées auparavant à d'autres apprenants. | 32 | 32 | En s'appuyant sur la philosophie du RàPC, le système global AI-TV part du principe que la création d'une session pour un apprenant peut être réalisé par analogie avec celles proposées à des étudiants ayant des acquis, besoins et capacités similaires. AI-VT propose une liste d'exercices en fonction de la compétence ou de la sous-compétence sélectionnée par similitude avec celles proposées auparavant à d'autres apprenants. | |
| 33 | 33 | |||
| L'algorithme d'AI-VT tente de tenir compte de l'équilibre entre répétitivité et variété. De plus, le nombre d'exercices par session change en fonction du domaine, de la compétence choisie et du niveau de l'apprenant. La liste d'exercices est générée au début de chaque séance et elle n'est pas modifiée au cours de la séance en fonction des réponses fournies par l'apprenant : les listes d'exercices sont statiques pendant la séance \cite{10.1007/978-3-030-01081-2_9}. | 34 | 34 | L'algorithme d'AI-VT tente de tenir compte de l'équilibre entre répétitivité et variété. De plus, le nombre d'exercices par session change en fonction du domaine, de la compétence choisie et du niveau de l'apprenant. La liste d'exercices est générée au début de chaque séance et elle n'est pas modifiée au cours de la séance en fonction des réponses fournies par l'apprenant : les listes d'exercices sont statiques pendant la séance \cite{10.1007/978-3-030-01081-2_9}. | |
| 35 | 35 | |||
| \begin{table}[!ht] | 36 | 36 | \begin{table}[!ht] | |
| \centering | 37 | 37 | \centering | |
| \begin{tabular}{p{1in}p{2.5in}p{1.5in}} | 38 | 38 | \begin{tabular}{p{1in}p{2.5in}p{1.5in}} | |
| Type&Definition&Système AI-VT\\ | 39 | 39 | Type&Definition&Système AI-VT\\ | |
| \hline | 40 | 40 | \hline | |
| Subject&Acteur humain concerné par le profil&Apprentissage seul et en groupe\\ | 41 | 41 | Sujet&Acteur humain concerné par le profil&Apprentissage seul et en groupe\\ | |
| Collaboration&Le rôle de la collaboration dans les activités du profil&Individuel, Collaboratif\\ | 42 | 42 | Collaboration&Le rôle de la collaboration dans les activités du profil&Individuel, Collaboratif\\ | |
| Distance&Le rôle de la distance dans les activités du profil&Presentiel, Distanciel\\ | 43 | 43 | Distance&Le rôle de la distance dans les activités du profil&Présentiel, Distanciel\\ | |
| Discipline&Discipline des informations contenues dans le | 44 | 44 | Discipline&Discipline des informations contenues dans le | |
| profil&Generic\\ | 45 | 45 | profil&Générique\\ | |
| Niveau&Le niveau scolaire de la matière concernée par le profil &Generic\\ | 46 | 46 | Niveau&Le niveau scolaire de la matière concernée par le profil &Générique\\ | |
| Initiateur&L'acteur humain à l'origine de la décision de créer le profil de création&Professeur, Administrateur\\ | 47 | 47 | Initiateur&L'acteur humain à l'origine de la décision de créer le profil de création&Professeur, Administrateur\\ | |
| Créateur&L'acteur humain ou logiciel qui compose le profil&Professeur, Administrateur\\ | 48 | 48 | Créateur&L'acteur humain ou logiciel qui compose le profil&Professeur, Administrateur\\ | |
| Destinataire&Acteur humain ou logiciel exploitant le profil&Apprenant\\ | 49 | 49 | Destinataire&Acteur humain ou logiciel exploitant le profil&Apprenant\\ | |
| Temps&Période du profil&Asynchrone\\ | 50 | 50 | Temps&Période du profil&Asynchrone\\ | |
| Évolution&L'évolutivité du profil &Profil évolutif\\ | 51 | 51 | Évolution&L'évolutivité du profil &Profil évolutif\\ | |
| Type&Le type d'informations contenues dans le profil &Profil de l'apprenant\\ | 52 | 52 | Type&Le type d'informations contenues dans le profil &Profil de l'apprenant\\ | |
| Nature&La nature des informations contenues dans le | 53 | 53 | Nature&La nature des informations contenues dans le | |
| profil&Connaissances et compétences\\ | 54 | 54 | profil&Connaissances et compétences\\ | |
| Évaluation&La forme sous laquelle l'information est | 55 | 55 | Évaluation&La forme sous laquelle l'information est | |
| évaluée&Rating, Taux de maîtrise\\ | 56 | 56 | évaluée&Rating, Taux de maîtrise\\ | |
| Représentation interne&Représentation interne utilisée par le système informatique pour manipuler les profils&Tables\\ | 57 | 57 | Représentation interne&Représentation interne utilisée par le système informatique pour manipuler les profils&Tables\\ | |
| Représentation externe&Représentation utilisée pour stocker le profil &Liste de valeurs\\ | 58 | 58 | Représentation externe&Représentation utilisée pour stocker le profil &Liste de valeurs\\ | |
| Visualisation&Représentation utilisée pour présenter le profil à ses destinataires&Représentation textuel et graphique standard\\ | 59 | 59 | Visualisation&Représentation utilisée pour présenter le profil à ses destinataires&Représentation textuel et graphique standard\\ | |
| Norme&Norme ou standard éducatif & - \\ | 60 | 60 | Norme&Norme ou standard éducatif & - \\ | |
| Format&Format de stockage du profil &Base de données relationnelle\\ | 61 | 61 | Format&Format de stockage du profil &Base de données relationnelle\\ | |
| Plate-forme&plate-forme informatique compatible&Web\\ | 62 | 62 | Plate-forme&plate-forme informatique compatible&Web\\ | |
| Dispositifs&le type de dispositif d'affichage du profil &Ordinateur ou appareils connectés\\ | 63 | 63 | Dispositifs&le type de dispositif d'affichage du profil &Ordinateur ou appareils connectés\\ | |
| \end{tabular} | 64 | 64 | \end{tabular} | |
| \caption{Un tableau décrivant les caractéristiques du système AI-VT} | 65 | 65 | \caption{Un tableau décrivant les caractéristiques du système AI-VT} | |
| \label{tabDesc} | 66 | 66 | \label{tabDesc} | |
| \end{table} | 67 | 67 | \end{table} | |
| 68 | 68 | |||
| \section{Modèle d'architecture proposé} | 69 | 69 | \section{Modèle d'architecture proposé} | |
| 70 | 70 | |||
| Cette section explicite l'architecture proposée à partir du système AI-VT déjà existante. | 71 | 71 | Cette section explicite l'architecture proposée à partir du système AI-VT déjà existante. | |
| 72 | 72 | |||
| %\textcolor{red}{pour tous les modules dire précisément ce qui est développé ou en cours} | 73 | 73 | %\textcolor{red}{pour tous les modules dire précisément ce qui est développé ou en cours} | |
| 74 | 74 | |||
| La nouvelle architecture proposée a pour objectif d'intégrer de nouvelles fonctionnalités complémentaires au système initial sans en modifier les fonctionnalités. L'idée consiste donc à pouvoir activer simplement le module correspondant en envoyant et en recevant les informations nécessaires à son fonctionnement. Une évolution vers une architecture plus modulaire permettra ainsi d'ajouter de nouvelles fonctionnalités au système d'origine en intégrant de nouveaux modules ou en faisant évoluer les modules existants. La conception modulaire facilite également la maintenance du code, le développement et l'intégration de nouvelles extensions. De plus, le système pourra être configuré et adapté module par module, réduisant ainsi les risques de pannes et les coûts de maintenance et d'évolution. La modularité permet également d'exécuter les algorithmes de chaque module de manière asynchrone, en parallèle ou en mode distribué si nécessaire.%\textcolor{red}{idem préciser ce qui était avant, le travail de floran et ton travail} | 75 | 75 | La nouvelle architecture proposée a pour objectif d'intégrer de nouvelles fonctionnalités complémentaires au système initial sans en modifier les fonctionnalités. L'idée consiste donc à pouvoir activer simplement le module correspondant en envoyant et en recevant les informations nécessaires à son fonctionnement. Une évolution vers une architecture plus modulaire permet ainsi d'ajouter de nouvelles fonctionnalités au système d'origine en intégrant de nouveaux modules ou en faisant évoluer les modules existants. La conception modulaire facilite également la maintenance du code, le développement et l'intégration de nouvelles extensions. De plus, le système peut être configuré et adapté module par module, réduisant ainsi les risques de pannes et les coûts de maintenance et d'évolution. La modularité permet également d'exécuter les algorithmes de chaque module de manière asynchrone, en parallèle ou en mode distribué si nécessaire.%\textcolor{red}{idem préciser ce qui était avant, le travail de floran et ton travail} | |
| 76 | 76 | |||
| L'architecture se compose de deux éléments principaux représentés sur la figure \figref{sa1} : le système central AI-VT, tel qui décrit dans la section 5.2 et les modules fonctionnels proposées pour compléter et améliorer certaines fonctionnalités. Le système central gère l'ensemble du processus d'apprentissage ; il génère %\textcolor{red}{démarre?} | 77 | 77 | L'architecture se compose de deux éléments principaux représentés sur la figure \figref{sa1} : le système central AI-VT, tel qui décrit dans la section 5.2 et les modules fonctionnels proposées pour compléter et améliorer certaines fonctionnalités. Le système central gère l'ensemble du processus d'apprentissage ; il génère %\textcolor{red}{démarre?} | |
| les séances ; il stocke les données relatives aux compétences, aux questions, aux ressources, aux apprenants, aux enseignants et aux réponses ; il contient les commandes et l'interface générale ; il gère le flux d'informations et active les modules nécessaires. Les modules sont un ensemble de fonctionnalités indépendantes mises en œuvre avec des algorithmes d'intelligence artificielle qui reçoivent et envoient des données depuis le composant central. Chaque module fonctionne selon des critères spécifiques liés à son propre objectif. Les modules sont regroupés en couches selon leur fonctionnalité : correction automatique, identification, adaptation, révision et test. L'enseignant et l'apprenant n'utilisent pas les modules directement ; ceux-ci sont appelés par le système pour compléter certaines fonctionnalités. | 78 | 78 | les séances ; il stocke les données relatives aux compétences, aux questions, aux ressources, aux apprenants, aux enseignants et aux réponses ; il contient les commandes et l'interface générale ; il gère le flux d'informations et active les modules nécessaires. Les modules sont un ensemble de fonctionnalités indépendantes mises en œuvre avec des algorithmes d'intelligence artificielle qui reçoivent et envoient des données depuis le composant central. Chaque module fonctionne selon des critères spécifiques liés à son propre objectif. Les modules sont regroupés en couches selon leur fonctionnalité : correction automatique, identification, adaptation, révision et test. L'enseignant et l'apprenant n'utilisent pas les modules directement ; ceux-ci sont appelés par le système pour compléter certaines fonctionnalités. | |
| 79 | 79 | |||
| \mfigure[!ht]{width=\textwidth}{./Figures/Architecture AI-VT2.png}{Schème de l'architecture proposée}{sa1} | 80 | 80 | \mfigure[!ht]{width=\textwidth}{./Figures/Architecture AI-VT2.png}{Schème de l'architecture proposée}{sa1} | |
| 81 | 81 | |||
| %\begin{figure}[!ht] | 82 | 82 | %\begin{figure}[!ht] | |
| %\centering | 83 | 83 | %\centering | |
| %\includegraphics[width=\textwidth]{./Figures/Architecture AI-VT2.png} | 84 | 84 | %\includegraphics[width=\textwidth]{./Figures/Architecture AI-VT2.png} | |
| %\caption{Schème de l'architecture proposée} | 85 | 85 | %\caption{Schème de l'architecture proposée} | |
| %\label{sa1} | 86 | 86 | %\label{sa1} | |
| %\end{figure} | 87 | 87 | %\end{figure} | |
| 88 | 88 | |||
| La couche de correction automatique (LC) contient les modules chargés de recevoir les réponses des apprenants et, conformément aux algorithmes et critères définis, d'établir une note cohérente avec une réponse de référence à une question spécifique. Dans cette couche, le module routeur (LC0) est chargé d'identifier le type de correction nécessaire et d'instancier le module approprié pour l'exécution de la tâche spécifique. | 89 | 89 | La couche de correction automatique (LC) contient les modules chargés de recevoir les réponses des apprenants et, conformément aux algorithmes et critères définis, d'établir une note cohérente avec une réponse de référence à une question spécifique. Dans cette couche, le module routeur (LC0) est chargé d'identifier le type de correction nécessaire et d'instancier le module approprié pour l'exécution de la tâche spécifique. | |
| 90 | 90 | |||
| La couche d'identification (LD) contient les modules qui identifient les faiblesses ou les variables externes des apprenants lors de l'exécution des exercices proposés par le système ou après l'analyse des résultats. Ces modules aident à personnaliser le processus d'apprentissage en fonction de l'analyse des résultats obtenus par les apprenants. | 91 | 91 | La couche d'identification (LD) contient les modules qui identifient les faiblesses ou les variables externes des apprenants lors de l'exécution des exercices proposés par le système ou après l'analyse des résultats. Ces modules aident à personnaliser le processus d'apprentissage en fonction de l'analyse des résultats obtenus par les apprenants. | |
| 92 | 92 | |||
| La couche de révision (LR) comprend les modules qui prennent les données des résultats obtenus dans la couche LC et les résultats de l'analyse de la couche LD pour modifier le parcours de l'apprenant en essayant de renforcer l'apprentissage dans les faiblesses détectées. Elle comprend également les modules qui obtiennent des informations de la part des apprenants et tentent de prédire leurs résultats en fonction des différentes compétences et des différents niveaux de complexité. | 93 | 93 | La couche de révision (LR) comprend les modules qui prennent les données des résultats obtenus dans la couche LC et les résultats de l'analyse de la couche LD pour modifier le parcours de l'apprenant en essayant de renforcer l'apprentissage dans les faiblesses détectées. Elle comprend également les modules qui obtiennent des informations de la part des apprenants et tentent de prédire leurs résultats en fonction des différentes compétences et des différents niveaux de complexité. | |
| 94 | 94 | |||
| Pour évaluer les modules dans différents scénarios, il est nécessaire de produire des données selon différents critères et complexités. C'est la raison pour laquelle la couche de test (LT) a été définie. Les modules qui permettent de générer des données synthétiques selon des critères variables font partie de cette couche. Les modules de cette couche permettent d'obtenir des résultats numériques des modules, d'appliquer des métriques, et ainsi d'évaluer les modules selon différents critères et complexités. | 95 | 95 | Pour évaluer les modules dans différents scénarios, il est nécessaire de produire des données selon différents critères et complexités. C'est la raison pour laquelle la couche de test (LT) a été définie. Les modules qui permettent de générer des données synthétiques selon des critères variables font partie de cette couche. Les modules de cette couche permettent d'obtenir des résultats numériques des modules, d'appliquer des métriques, et ainsi d'évaluer les modules selon différents critères et complexités. | |
| 96 | 96 | |||
| Le schéma complet de l'architecture est représenté sur la figure \figref{sa1}. Sur cette figure, les lignes pleines représentent un flux d'informations bidirectionnel, les lignes pleines terminées par une flèche représentent le flux unidirectionnel et les lignes en pointillé représentent la dépendance de l'information entre les modules. | 97 | 97 | Le schéma complet de l'architecture est représenté sur la figure \figref{sa1}. Sur cette figure, les lignes pleines représentent un flux d'informations bidirectionnel, les lignes pleines terminées par une flèche représentent le flux unidirectionnel et les lignes en pointillé représentent la dépendance de l'information entre les modules. | |
| Les dispositifs externes qui peuvent être utilisés par les modules pour exécuter leurs fonctionnalités et les étiquettes indiquant le type d'information transmis au système central par le module sont également représentés. Certains des algorithmes d'intelligence artificielle mis en œuvre dans chaque module et le stade de développement dans lequel chacun d'eux se trouve y figurent également. Comme le montre cette figure, certains dispositifs ont besoin de données provenant de sources externes telles que le robot NAO, des capteurs, caméra vidéo ou microphone. | 98 | 98 | Les dispositifs externes qui peuvent être utilisés par les modules pour exécuter leurs fonctionnalités et les étiquettes indiquant le type d'information transmis au système central par le module sont également représentés. Certains des algorithmes d'intelligence artificielle mis en œuvre dans chaque module et le stade de développement dans lequel chacun d'eux se trouve y figurent également. Comme le montre cette figure, certains dispositifs ont besoin de données provenant de sources externes telles que le robot NAO, des capteurs, caméra vidéo ou microphone. | |
| 99 | 99 | |||
| \subsection{Correction automatique} | 100 | 100 | \subsection{Correction automatique} | |
| 101 | 101 | |||
| L'une des couches importantes et la couche de correction automatique. Dans cette couche, les modules ont la capacité de recevoir et d'évaluer différents types de réponses données par les apprenants en fonction du contexte et de la question que le système a proposée. Les modules représentés ont la capacité d'évaluer une réponse donnée par l'apprenant. Des études et certains programmes ont déjà été réalisés dans l'analyse de vidéo, de texte audio (langage naturel) et de code source (Java, Python). D'autres modules permettent également d'analyser des images, des expressions mathématiques, des valeurs générées par des capteurs physiques et des variables définies pour des activités sportives spécifiques. | 102 | 102 | L'une des couches importantes et la couche de correction automatique. Dans cette couche, les modules ont la capacité de recevoir et d'évaluer différents types de réponses données par les apprenants en fonction du contexte et de la question que le système a proposée. Les modules représentés ont la capacité d'évaluer une réponse donnée par l'apprenant. Des études et certains programmes ont déjà été réalisés dans l'analyse de vidéo, de texte audio (langage naturel) et de code source (Java, Python). D'autres modules permettent également d'analyser des images, des expressions mathématiques, des valeurs générées par des capteurs physiques et des variables définies pour des activités sportives spécifiques. | |
| 103 | 103 | |||
| Le module routeur (LC0) a pour fonction d'identifier le type de réponse donnée par l'apprenant, c'est à dire reconnaître si la réponse donnée par l'apprenant est vidéo, audio, texte, image, etc et de la rediriger vers le module d'analyse correspondant ; une fois le module spécifique obtient les résultats de l'analyse de la réponse donnée, le router les redirige vers le système AI-VT principal. | 104 | 104 | Le module routeur (LC0) a pour fonction d'identifier le type de réponse donnée par l'apprenant, c'est-à-dire reconnaître si la réponse donnée par l'apprenant est vidéo, audio, texte, image, etc. et de la rediriger vers le module d'analyse correspondant ; une fois que le module spécifique obtient les résultats de l'analyse de la réponse donnée, le routeur les redirige vers le système AI-VT principal. | |
| 105 | 105 | |||
| Le module vidéo (LC1) permet de capturer un flux d'images à partir d'un dispositif externe (caméra vidéo ou robot NAO) et de les analyser pour déterminer si une réponse donnée est correcte, actuellement le module est utilisé pour évaluer la réponse à la question : montrer \textit{n} nombre de doigts. L'algorithme implémenté détecte les doigts qui apparaissent sur la caméra, les compte et détermine s'il s'agit de la bonne réponse à la question donnée. | 106 | 106 | Le module vidéo (LC1) permet de capturer un flux d'images à partir d'un dispositif externe (caméra vidéo ou robot NAO) et de les analyser pour déterminer si une réponse donnée est correcte, actuellement le module est utilisé pour évaluer la réponse à la question : montrer \textit{n} nombre de doigts. L'algorithme implémenté détecte les doigts qui apparaissent sur la caméra, les compte et détermine s'il s'agit de la bonne réponse à la question donnée. | |
| 107 | 107 | |||
| Le module audio (LC2) analyse une piste audio et convertit son contenu en texte. Une fois le texte généré, il peut être comparé à une réponse attendue à la question posée à l'aide de techniques NLP. Un score d'approximation estimé peut alors être calculé. Pour la comparaison est utilisé le module de texte (LC4) qui permet d'établir le score de similarité entre le texte envoyé comme réponse de l'apprenant ou converti depuis une réponse audio et un texte de référence. | 108 | 108 | Le module audio (LC2) analyse une piste audio et convertit son contenu en texte. Une fois le texte généré, il peut être comparé à une réponse attendue à la question posée à l'aide de techniques NLP. Un score d'approximation estimé peut alors être calculé. Pour la comparaison, le module de texte (LC4) est utilisé , il permet d'établir le score de similarité entre le texte envoyé comme réponse de l'apprenant ou converti depuis une réponse audio et un texte de référence. | |
| 109 | 109 | |||
| Le module d'analyse du code (LC3) génère un score après l'exécution de plusieurs étapes. En premier lieu, il détermine l'existence ou non de faiblesses dans certaines compétences prédéfinies. Il transforme ensuite la représentation du code en un vecteur numérique à comparer avec une réponse de référence : le résultat de la pondération entre les faiblesses détectées et le pourcentage de comparaison donne un score. | 110 | 110 | Le module d'analyse du code (LC3) génère un score après l'exécution de plusieurs étapes. En premier lieu, il détermine l'existence ou non de faiblesses dans certaines compétences prédéfinies. Il transforme ensuite la représentation du code en un vecteur numérique à comparer avec une réponse de référence : le résultat de la pondération entre les faiblesses détectées et le pourcentage de comparaison donne un score. | |
| 111 | 111 | |||
| Le module d'analyse de texte (LC5) transforme le texte envoyé par l'apprenant en un vecteur numérique qui peut être comparé au vecteur numérique d'une réponse attendue. Dans ce cas, la réponse donnée ne doit pas nécessairement être exactement la même que la réponse attendue. La représentation vectorielle permet d'établir des similitudes dans l'espace, même si les termes utilisés et la longueur du texte diffèrent. | 112 | 112 | Le module d'analyse de texte (LC5) transforme le texte envoyé par l'apprenant en un vecteur numérique qui peut être comparé au vecteur numérique d'une réponse attendue. Dans ce cas, la réponse donnée ne doit pas nécessairement être exactement la même que la réponse attendue. La représentation vectorielle permet d'établir des similitudes dans l'espace, même si les termes utilisés et la longueur du texte diffèrent. | |
| 113 | 113 | |||
| Les modules LC6, LC7, LC8 et LC9 sont capables d'analyser différents types de réponses potentielles qui peuvent éventuellement gérées par le système AI-VT. | 114 | 114 | Les modules LC6, LC7, LC8 et LC9 sont capables d'analyser différents types de réponses potentielles qui peuvent éventuellement gérées par le système AI-VT. | |
| 115 | 115 | |||
| Les modules LC1, LC2, LC3 ont été partiellement développés et n'ont pas été suffisamment testés pour les intégrer dans le système de façon fonctionnelle, les autres modules pour le moment sont théoriques. | 116 | 116 | Les modules LC1, LC2, LC3 ont été partiellement développés et n'ont pas été suffisamment testés pour les intégrer dans le système de façon fonctionnelle, les autres modules pour le moment sont théoriques. | |
| 117 | 117 | |||
| \subsection{Identification} | 118 | 118 | \subsection{Identification} | |
| 119 | 119 | |||
| Les modules de la couche d'identification visent à extraire des informations complémentaires à la note de l'étudiant pour chacune des réponses envoyées au système et ainsi affiner encore plus les recommandations générées. Ces informations complémentaires permettent d'obtenir principalement des informations sur les émotions (bonheur, dégoût, surprise, colère, peur, neutre et triste) grâce à la détection des expressions faciales et aussi les lacunes de connaissance de l'apprenant %\textcolor{red}{expression et faiblesse de quoi, comment?} | 120 | 120 | Les modules de la couche d'identification visent à extraire des informations complémentaires à la note de l'étudiant pour chacune des réponses envoyées au système et ainsi affiner encore plus les recommandations générées. Ces informations complémentaires permettent d'obtenir principalement des informations sur les émotions (bonheur, dégoût, surprise, colère, peur, neutre et triste) grâce à la détection des expressions faciales et aussi les lacunes de connaissance de l'apprenant %\textcolor{red}{expression et faiblesse de quoi, comment?} | |
| qui peuvent se manifester dans chaque sous-compétence et niveau de complexité. Ces modules d'AI-VT sont capables d'obtenir une meilleure estimation de l'état de l'apprentissage afin de mieux adapter le parcours de l'apprenant. | 121 | 121 | qui peuvent se manifester dans chaque sous-compétence et niveau de complexité. Ces modules d'AI-VT sont capables d'obtenir une meilleure estimation de l'état de l'apprentissage afin de mieux adapter le parcours de l'apprenant. | |
| 122 | 122 | |||
| Les modules d'identification LD1, LD2 et LD4 tentent de détecter les comportements, les émotions et les sentiments à l'aide de dispositifs externes tels que la caméra vidéo et le microphone. Dans le cas de l'analyse vidéo, des réseaux neuronaux d'apprentissage profond sont utilisés pour capturer et analyser les images statiques obtenues à partir du flux de la caméra vidéo. Le modèle d'IA a été entraîné à détecter des émotions prédéfinies. Le module audio vise à détecter le même type d'émotions, mais à partir de l'analyse des signaux obtenus à partir d'un microphone. Il utilise également l'apprentissage profond entrainé avec des signaux qui présentent différentes émotions prédéfinies. Le module capteur est plus générique, mais il peut être subdivisé en modules spécifiques en fonction du type de capteur et du signal à analyser. Toutefois, l'idée de la détection est la même : détecter des émotions prédéfinies. | 123 | 123 | Les modules d'identification LD1, LD2 et LD4 tentent de détecter les comportements, les émotions et les sentiments à l'aide de dispositifs externes tels que la caméra vidéo et le microphone. Dans le cas de l'analyse vidéo, des réseaux neuronaux d'apprentissage profond sont utilisés pour capturer et analyser les images statiques obtenues à partir du flux de la caméra vidéo. Le modèle d'IA a été entraîné à détecter des émotions prédéfinies. Le module audio vise à détecter le même type d'émotions, mais à partir de l'analyse des signaux obtenus à partir d'un microphone. Il utilise également l'apprentissage profond entrainé avec des signaux qui présentent différentes émotions prédéfinies. Le module capteur est plus générique, mais il peut être subdivisé en modules spécifiques en fonction du type de capteur et du signal à analyser. Toutefois, l'idée de la détection est la même : détecter des émotions prédéfinies. | |
| 124 | 124 | |||
| Le module Analyse des données (LD3) est différent car, en plus d'être générique, il tente d'identifier les faiblesses dans des compétences spécifiques en fonction du type d'évaluation. Ce module peut contenir différents modèles entraînés pour chaque type de cas. Pour les exercices linguistiques, les faiblesses identifiables peuvent être la conjugaison des verbes, l'utilisation des temps, le vocabulaire, la correspondance des genres de mots, etc. Si l'exercice est de type programmation le module est capable d'identifier des faiblesses liées à la syntaxe, la déclaration de variables, l'appel de fonctions, la construction de structures, etc. Ce module fonctionne sur la base d'implémentation de modèles d'apprentissage profond et de modèles collaboratifs tels que le raisonnement à partir de cas | 125 | 125 | Le module Analyse des données (LD3) est différent car, en plus d'être générique, il tente d'identifier les faiblesses dans des compétences spécifiques en fonction du type d'évaluation. Ce module peut contenir différents modèles entraînés pour chaque type de cas. Pour les exercices linguistiques, les faiblesses identifiables peuvent être la conjugaison des verbes, l'utilisation des temps, le vocabulaire, la correspondance des genres de mots, etc. Si l'exercice est de type programmation le module est capable d'identifier des faiblesses liées à la syntaxe, la déclaration de variables, l'appel de fonctions, la construction de structures, etc. Ce module fonctionne sur la base d'implémentation de modèles d'apprentissage profond et de modèles collaboratifs tels que le raisonnement à partir de cas. | |
| 126 | 126 | |||
| Les modules LD1 et LD3 ont été partiellement développés et n'ont pas été suffisamment testés pour les intégrer dans le système de façon fonctionnelle, les autres modules pour le moment sont théoriques. | 127 | 127 | Les modules LD1 et LD3 ont été partiellement développés et n'ont pas été suffisamment testés pour les intégrer dans le système de façon fonctionnelle, les autres modules pour le moment sont théoriques. | |
| 128 | 128 | |||
| \subsection{Révision} | 129 | 129 | \subsection{Révision} | |
| 130 | 130 | |||
| Les modules qui se trouvent dans cette section sont les principales de ce travail. Dans la couche de révision, les modules utilisent les informations générées par les modules des couches de correction automatique et d'identification ainsi que les informations complémentaires de l'apprenant stockées dans la base de données du système. Ces modules valident le fait que la recommandation générée est optimale pour l'apprenant. Toutes les informations récoltées permettent d'établir la meilleure façon de guider l'apprenant vers une meilleure compréhension en surmontant les faiblesses et les lacunes qui ont été identifiées. | 131 | 131 | Les modules qui se trouvent dans cette section sont les modules principaux de ce travail. Dans la couche de révision, les modules utilisent les informations générées par les modules des couches de correction automatique et d'identification ainsi que les informations complémentaires de l'apprenant stockées dans la base de données du système. Ces modules valident le fait que la recommandation générée est optimale pour l'apprenant. Toutes les informations récoltées permettent d'établir la meilleure façon de guider l'apprenant vers une meilleure compréhension en surmontant les faiblesses et les lacunes qui ont été identifiées. | |
| 132 | 132 | |||
| Les ressources recommandées par le module LR1 proviennent d'une base de données déjà établie que le module consulte et suggère à l'étudiant en fonction du résultat de la comparaison de l'état d'apprentissage, du niveau et des caractéristiques et spécifications de chacune des ressources. | 133 | 133 | Les ressources recommandées par le module LR1 proviennent d'une base de données déjà établie que le module consulte et suggère à l'étudiant en fonction du résultat de la comparaison de l'état d'apprentissage, du niveau et des caractéristiques et spécifications de chacune des ressources. | 
main.log
View file @
cc9dda2
| This is pdfTeX, Version 3.141592653-2.6-1.40.25 (TeX Live 2023) (preloaded format=pdflatex 2023.5.31) 17 JUL 2025 18:30 | 1 | 1 | This is pdfTeX, Version 3.141592653-2.6-1.40.25 (TeX Live 2023) (preloaded format=pdflatex 2023.5.31) 17 JUL 2025 18:49 | |
| entering extended mode | 2 | 2 | entering extended mode | |
| restricted \write18 enabled. | 3 | 3 | restricted \write18 enabled. | |
| %&-line parsing enabled. | 4 | 4 | %&-line parsing enabled. | |
| **main.tex | 5 | 5 | **main.tex | |
| (./main.tex | 6 | 6 | (./main.tex | |
| LaTeX2e <2022-11-01> patch level 1 | 7 | 7 | LaTeX2e <2022-11-01> patch level 1 | |
| L3 programming layer <2023-05-22> (./spimufcphdthesis.cls | 8 | 8 | L3 programming layer <2023-05-22> (./spimufcphdthesis.cls | |
| Document Class: spimufcphdthesis 2022/02/10 | 9 | 9 | Document Class: spimufcphdthesis 2022/02/10 | |
| 10 | 10 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/upmethodology/upmethodology-docum | 11 | 11 | (/usr/local/texlive/2023/texmf-dist/tex/latex/upmethodology/upmethodology-docum | |
| ent.cls | 12 | 12 | ent.cls | |
| Document Class: upmethodology-document 2022/10/04 | 13 | 13 | Document Class: upmethodology-document 2022/10/04 | |
| (./upmethodology-p-common.sty | 14 | 14 | (./upmethodology-p-common.sty | |
| Package: upmethodology-p-common 2015/04/24 | 15 | 15 | Package: upmethodology-p-common 2015/04/24 | |
| 16 | 16 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/base/ifthen.sty | 17 | 17 | (/usr/local/texlive/2023/texmf-dist/tex/latex/base/ifthen.sty | |
| Package: ifthen 2022/04/13 v1.1d Standard LaTeX ifthen package (DPC) | 18 | 18 | Package: ifthen 2022/04/13 v1.1d Standard LaTeX ifthen package (DPC) | |
| ) | 19 | 19 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/tools/xspace.sty | 20 | 20 | (/usr/local/texlive/2023/texmf-dist/tex/latex/tools/xspace.sty | |
| Package: xspace 2014/10/28 v1.13 Space after command names (DPC,MH) | 21 | 21 | Package: xspace 2014/10/28 v1.13 Space after command names (DPC,MH) | |
| ) | 22 | 22 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/xcolor/xcolor.sty | 23 | 23 | (/usr/local/texlive/2023/texmf-dist/tex/latex/xcolor/xcolor.sty | |
| Package: xcolor 2022/06/12 v2.14 LaTeX color extensions (UK) | 24 | 24 | Package: xcolor 2022/06/12 v2.14 LaTeX color extensions (UK) | |
| 25 | 25 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/graphics-cfg/color.cfg | 26 | 26 | (/usr/local/texlive/2023/texmf-dist/tex/latex/graphics-cfg/color.cfg | |
| File: color.cfg 2016/01/02 v1.6 sample color configuration | 27 | 27 | File: color.cfg 2016/01/02 v1.6 sample color configuration | |
| ) | 28 | 28 | ) | |
| Package xcolor Info: Driver file: pdftex.def on input line 227. | 29 | 29 | Package xcolor Info: Driver file: pdftex.def on input line 227. | |
| 30 | 30 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/graphics-def/pdftex.def | 31 | 31 | (/usr/local/texlive/2023/texmf-dist/tex/latex/graphics-def/pdftex.def | |
| File: pdftex.def 2022/09/22 v1.2b Graphics/color driver for pdftex | 32 | 32 | File: pdftex.def 2022/09/22 v1.2b Graphics/color driver for pdftex | |
| ) | 33 | 33 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/graphics/mathcolor.ltx) | 34 | 34 | (/usr/local/texlive/2023/texmf-dist/tex/latex/graphics/mathcolor.ltx) | |
| Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1353. | 35 | 35 | Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1353. | |
| Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1357. | 36 | 36 | Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1357. | |
| Package xcolor Info: Model `RGB' extended on input line 1369. | 37 | 37 | Package xcolor Info: Model `RGB' extended on input line 1369. | |
| Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1371. | 38 | 38 | Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1371. | |
| Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1372. | 39 | 39 | Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1372. | |
| Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1373. | 40 | 40 | Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1373. | |
| Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1374. | 41 | 41 | Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1374. | |
| Package xcolor Info: Model `Gray' substituted by `gray' on input line 1375. | 42 | 42 | Package xcolor Info: Model `Gray' substituted by `gray' on input line 1375. | |
| Package xcolor Info: Model `wave' substituted by `hsb' on input line 1376. | 43 | 43 | Package xcolor Info: Model `wave' substituted by `hsb' on input line 1376. | |
| ) | 44 | 44 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/generic/iftex/ifpdf.sty | 45 | 45 | (/usr/local/texlive/2023/texmf-dist/tex/generic/iftex/ifpdf.sty | |
| Package: ifpdf 2019/10/25 v3.4 ifpdf legacy package. Use iftex instead. | 46 | 46 | Package: ifpdf 2019/10/25 v3.4 ifpdf legacy package. Use iftex instead. | |
| 47 | 47 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/generic/iftex/iftex.sty | 48 | 48 | (/usr/local/texlive/2023/texmf-dist/tex/generic/iftex/iftex.sty | |
| Package: iftex 2022/02/03 v1.0f TeX engine tests | 49 | 49 | Package: iftex 2022/02/03 v1.0f TeX engine tests | |
| )) | 50 | 50 | )) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/upmethodology/UPMVERSION.def)) | 51 | 51 | (/usr/local/texlive/2023/texmf-dist/tex/latex/upmethodology/UPMVERSION.def)) | |
| *********** UPMETHODOLOGY BOOK CLASS (WITH PART AND CHAPTER) | 52 | 52 | *********** UPMETHODOLOGY BOOK CLASS (WITH PART AND CHAPTER) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/base/book.cls | 53 | 53 | (/usr/local/texlive/2023/texmf-dist/tex/latex/base/book.cls | |
| Document Class: book 2022/07/02 v1.4n Standard LaTeX document class | 54 | 54 | Document Class: book 2022/07/02 v1.4n Standard LaTeX document class | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/base/bk11.clo | 55 | 55 | (/usr/local/texlive/2023/texmf-dist/tex/latex/base/bk11.clo | |
| File: bk11.clo 2022/07/02 v1.4n Standard LaTeX file (size option) | 56 | 56 | File: bk11.clo 2022/07/02 v1.4n Standard LaTeX file (size option) | |
| ) | 57 | 57 | ) | |
| \c@part=\count185 | 58 | 58 | \c@part=\count185 | |
| \c@chapter=\count186 | 59 | 59 | \c@chapter=\count186 | |
| \c@section=\count187 | 60 | 60 | \c@section=\count187 | |
| \c@subsection=\count188 | 61 | 61 | \c@subsection=\count188 | |
| \c@subsubsection=\count189 | 62 | 62 | \c@subsubsection=\count189 | |
| \c@paragraph=\count190 | 63 | 63 | \c@paragraph=\count190 | |
| \c@subparagraph=\count191 | 64 | 64 | \c@subparagraph=\count191 | |
| \c@figure=\count192 | 65 | 65 | \c@figure=\count192 | |
| \c@table=\count193 | 66 | 66 | \c@table=\count193 | |
| \abovecaptionskip=\skip48 | 67 | 67 | \abovecaptionskip=\skip48 | |
| \belowcaptionskip=\skip49 | 68 | 68 | \belowcaptionskip=\skip49 | |
| \bibindent=\dimen140 | 69 | 69 | \bibindent=\dimen140 | |
| ) | 70 | 70 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/a4wide/a4wide.sty | 71 | 71 | (/usr/local/texlive/2023/texmf-dist/tex/latex/a4wide/a4wide.sty | |
| Package: a4wide 1994/08/30 | 72 | 72 | Package: a4wide 1994/08/30 | |
| 73 | 73 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/ntgclass/a4.sty | 74 | 74 | (/usr/local/texlive/2023/texmf-dist/tex/latex/ntgclass/a4.sty | |
| Package: a4 2023/01/10 v1.2g A4 based page layout | 75 | 75 | Package: a4 2023/01/10 v1.2g A4 based page layout | |
| )) | 76 | 76 | )) | |
| (./upmethodology-document.sty | 77 | 77 | (./upmethodology-document.sty | |
| Package: upmethodology-document 2015/04/24 | 78 | 78 | Package: upmethodology-document 2015/04/24 | |
| 79 | 79 | |||
| **** upmethodology-document is using French language **** | 80 | 80 | **** upmethodology-document is using French language **** | |
| (/usr/local/texlive/2023/texmf-dist/tex/generic/babel/babel.sty | 81 | 81 | (/usr/local/texlive/2023/texmf-dist/tex/generic/babel/babel.sty | |
| Package: babel 2023/05/11 v3.89 The Babel package | 82 | 82 | Package: babel 2023/05/11 v3.89 The Babel package | |
| \babel@savecnt=\count194 | 83 | 83 | \babel@savecnt=\count194 | |
| \U@D=\dimen141 | 84 | 84 | \U@D=\dimen141 | |
| \l@unhyphenated=\language87 | 85 | 85 | \l@unhyphenated=\language87 | |
| 86 | 86 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/generic/babel/txtbabel.def) | 87 | 87 | (/usr/local/texlive/2023/texmf-dist/tex/generic/babel/txtbabel.def) | |
| \bbl@readstream=\read2 | 88 | 88 | \bbl@readstream=\read2 | |
| \bbl@dirlevel=\count195 | 89 | 89 | \bbl@dirlevel=\count195 | |
| 90 | 90 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/generic/babel-french/french.ldf | 91 | 91 | (/usr/local/texlive/2023/texmf-dist/tex/generic/babel-french/french.ldf | |
| Language: french 2023/03/08 v3.5q French support from the babel system | 92 | 92 | Language: french 2023/03/08 v3.5q French support from the babel system | |
| Package babel Info: Hyphen rules for 'acadian' set to \l@french | 93 | 93 | Package babel Info: Hyphen rules for 'acadian' set to \l@french | |
| (babel) (\language29). Reported on input line 91. | 94 | 94 | (babel) (\language29). Reported on input line 91. | |
| Package babel Info: Hyphen rules for 'canadien' set to \l@french | 95 | 95 | Package babel Info: Hyphen rules for 'canadien' set to \l@french | |
| (babel) (\language29). Reported on input line 92. | 96 | 96 | (babel) (\language29). Reported on input line 92. | |
| \FB@nonchar=\count196 | 97 | 97 | \FB@nonchar=\count196 | |
| Package babel Info: Making : an active character on input line 395. | 98 | 98 | Package babel Info: Making : an active character on input line 395. | |
| Package babel Info: Making ; an active character on input line 396. | 99 | 99 | Package babel Info: Making ; an active character on input line 396. | |
| Package babel Info: Making ! an active character on input line 397. | 100 | 100 | Package babel Info: Making ! an active character on input line 397. | |
| Package babel Info: Making ? an active character on input line 398. | 101 | 101 | Package babel Info: Making ? an active character on input line 398. | |
| \FBguill@level=\count197 | 102 | 102 | \FBguill@level=\count197 | |
| \FBold@everypar=\toks16 | 103 | 103 | \FBold@everypar=\toks16 | |
| \FB@Mht=\dimen142 | 104 | 104 | \FB@Mht=\dimen142 | |
| \mc@charclass=\count198 | 105 | 105 | \mc@charclass=\count198 | |
| \mc@charfam=\count199 | 106 | 106 | \mc@charfam=\count199 | |
| \mc@charslot=\count266 | 107 | 107 | \mc@charslot=\count266 | |
| \std@mcc=\count267 | 108 | 108 | \std@mcc=\count267 | |
| \dec@mcc=\count268 | 109 | 109 | \dec@mcc=\count268 | |
| \FB@parskip=\dimen143 | 110 | 110 | \FB@parskip=\dimen143 | |
| \listindentFB=\dimen144 | 111 | 111 | \listindentFB=\dimen144 | |
| \descindentFB=\dimen145 | 112 | 112 | \descindentFB=\dimen145 | |
| \labelindentFB=\dimen146 | 113 | 113 | \labelindentFB=\dimen146 | |
| \labelwidthFB=\dimen147 | 114 | 114 | \labelwidthFB=\dimen147 | |
| \leftmarginFB=\dimen148 | 115 | 115 | \leftmarginFB=\dimen148 | |
| \parindentFFN=\dimen149 | 116 | 116 | \parindentFFN=\dimen149 | |
| \FBfnindent=\dimen150 | 117 | 117 | \FBfnindent=\dimen150 | |
| ) | 118 | 118 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/generic/babel-french/frenchb.ldf | 119 | 119 | (/usr/local/texlive/2023/texmf-dist/tex/generic/babel-french/frenchb.ldf | |
| Language: frenchb 2023/03/08 v3.5q French support from the babel system | 120 | 120 | Language: frenchb 2023/03/08 v3.5q French support from the babel system | |
| 121 | 121 | |||
| 122 | 122 | |||
| Package babel-french Warning: Option `frenchb' for Babel is *deprecated*, | 123 | 123 | Package babel-french Warning: Option `frenchb' for Babel is *deprecated*, | |
| (babel-french) it might be removed sooner or later. Please | 124 | 124 | (babel-french) it might be removed sooner or later. Please | |
| (babel-french) use `french' instead; reported on input line 35. | 125 | 125 | (babel-french) use `french' instead; reported on input line 35. | |
| 126 | 126 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/generic/babel-french/french.ldf | 127 | 127 | (/usr/local/texlive/2023/texmf-dist/tex/generic/babel-french/french.ldf | |
| Language: french 2023/03/08 v3.5q French support from the babel system | 128 | 128 | Language: french 2023/03/08 v3.5q French support from the babel system | |
| ))) | 129 | 129 | ))) | |
| (/usr/local/texlive/2023/texmf-dist/tex/generic/babel/locale/fr/babel-french.te | 130 | 130 | (/usr/local/texlive/2023/texmf-dist/tex/generic/babel/locale/fr/babel-french.te | |
| x | 131 | 131 | x | |
| Package babel Info: Importing font and identification data for french | 132 | 132 | Package babel Info: Importing font and identification data for french | |
| (babel) from babel-fr.ini. Reported on input line 11. | 133 | 133 | (babel) from babel-fr.ini. Reported on input line 11. | |
| ) (/usr/local/texlive/2023/texmf-dist/tex/latex/carlisle/scalefnt.sty) | 134 | 134 | ) (/usr/local/texlive/2023/texmf-dist/tex/latex/carlisle/scalefnt.sty) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/graphics/keyval.sty | 135 | 135 | (/usr/local/texlive/2023/texmf-dist/tex/latex/graphics/keyval.sty | |
| Package: keyval 2022/05/29 v1.15 key=value parser (DPC) | 136 | 136 | Package: keyval 2022/05/29 v1.15 key=value parser (DPC) | |
| \KV@toks@=\toks17 | 137 | 137 | \KV@toks@=\toks17 | |
| ) | 138 | 138 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/vmargin/vmargin.sty | 139 | 139 | (/usr/local/texlive/2023/texmf-dist/tex/latex/vmargin/vmargin.sty | |
| Package: vmargin 2004/07/15 V2.5 set document margins (VK) | 140 | 140 | Package: vmargin 2004/07/15 V2.5 set document margins (VK) | |
| 141 | 141 | |||
| Package: vmargin 2004/07/15 V2.5 set document margins (VK) | 142 | 142 | Package: vmargin 2004/07/15 V2.5 set document margins (VK) | |
| \PaperWidth=\dimen151 | 143 | 143 | \PaperWidth=\dimen151 | |
| \PaperHeight=\dimen152 | 144 | 144 | \PaperHeight=\dimen152 | |
| ) (./upmethodology-extension.sty | 145 | 145 | ) (./upmethodology-extension.sty | |
| Package: upmethodology-extension 2012/09/21 | 146 | 146 | Package: upmethodology-extension 2012/09/21 | |
| \upmext@tmp@putx=\skip50 | 147 | 147 | \upmext@tmp@putx=\skip50 | |
| 148 | 148 | |||
| *** define extension value frontillustrationsize **** | 149 | 149 | *** define extension value frontillustrationsize **** | |
| *** define extension value watermarksize **** | 150 | 150 | *** define extension value watermarksize **** | |
| *** undefine extension value publisher **** | 151 | 151 | *** undefine extension value publisher **** | |
| *** undefine extension value copyrighter **** | 152 | 152 | *** undefine extension value copyrighter **** | |
| *** undefine extension value printedin ****) | 153 | 153 | *** undefine extension value printedin ****) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/upmethodology/upmethodology-fmt.s | 154 | 154 | (/usr/local/texlive/2023/texmf-dist/tex/latex/upmethodology/upmethodology-fmt.s | |
| ty | 155 | 155 | ty | |
| Package: upmethodology-fmt 2022/10/04 | 156 | 156 | Package: upmethodology-fmt 2022/10/04 | |
| **** upmethodology-fmt is using French language **** | 157 | 157 | **** upmethodology-fmt is using French language **** | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/graphics/graphicx.sty | 158 | 158 | (/usr/local/texlive/2023/texmf-dist/tex/latex/graphics/graphicx.sty | |
| Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR) | 159 | 159 | Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR) | |
| 160 | 160 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/graphics/graphics.sty | 161 | 161 | (/usr/local/texlive/2023/texmf-dist/tex/latex/graphics/graphics.sty | |
| Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR) | 162 | 162 | Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR) | |
| 163 | 163 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/graphics/trig.sty | 164 | 164 | (/usr/local/texlive/2023/texmf-dist/tex/latex/graphics/trig.sty | |
| Package: trig 2021/08/11 v1.11 sin cos tan (DPC) | 165 | 165 | Package: trig 2021/08/11 v1.11 sin cos tan (DPC) | |
| ) | 166 | 166 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/graphics-cfg/graphics.cfg | 167 | 167 | (/usr/local/texlive/2023/texmf-dist/tex/latex/graphics-cfg/graphics.cfg | |
| File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration | 168 | 168 | File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration | |
| ) | 169 | 169 | ) | |
| Package graphics Info: Driver file: pdftex.def on input line 107. | 170 | 170 | Package graphics Info: Driver file: pdftex.def on input line 107. | |
| ) | 171 | 171 | ) | |
| \Gin@req@height=\dimen153 | 172 | 172 | \Gin@req@height=\dimen153 | |
| \Gin@req@width=\dimen154 | 173 | 173 | \Gin@req@width=\dimen154 | |
| ) | 174 | 174 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/caption/subcaption.sty | 175 | 175 | (/usr/local/texlive/2023/texmf-dist/tex/latex/caption/subcaption.sty | |
| Package: subcaption 2023/02/19 v1.6 Sub-captions (AR) | 176 | 176 | Package: subcaption 2023/02/19 v1.6 Sub-captions (AR) | |
| 177 | 177 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/caption/caption.sty | 178 | 178 | (/usr/local/texlive/2023/texmf-dist/tex/latex/caption/caption.sty | |
| Package: caption 2023/03/12 v3.6j Customizing captions (AR) | 179 | 179 | Package: caption 2023/03/12 v3.6j Customizing captions (AR) | |
| 180 | 180 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/caption/caption3.sty | 181 | 181 | (/usr/local/texlive/2023/texmf-dist/tex/latex/caption/caption3.sty | |
| Package: caption3 2023/03/12 v2.4 caption3 kernel (AR) | 182 | 182 | Package: caption3 2023/03/12 v2.4 caption3 kernel (AR) | |
| \caption@tempdima=\dimen155 | 183 | 183 | \caption@tempdima=\dimen155 | |
| \captionmargin=\dimen156 | 184 | 184 | \captionmargin=\dimen156 | |
| \caption@leftmargin=\dimen157 | 185 | 185 | \caption@leftmargin=\dimen157 | |
| \caption@rightmargin=\dimen158 | 186 | 186 | \caption@rightmargin=\dimen158 | |
| \caption@width=\dimen159 | 187 | 187 | \caption@width=\dimen159 | |
| \caption@indent=\dimen160 | 188 | 188 | \caption@indent=\dimen160 | |
| \caption@parindent=\dimen161 | 189 | 189 | \caption@parindent=\dimen161 | |
| \caption@hangindent=\dimen162 | 190 | 190 | \caption@hangindent=\dimen162 | |
| Package caption Info: Standard document class detected. | 191 | 191 | Package caption Info: Standard document class detected. | |
| Package caption Info: french babel package is loaded. | 192 | 192 | Package caption Info: french babel package is loaded. | |
| ) | 193 | 193 | ) | |
| \c@caption@flags=\count269 | 194 | 194 | \c@caption@flags=\count269 | |
| \c@continuedfloat=\count270 | 195 | 195 | \c@continuedfloat=\count270 | |
| ) | 196 | 196 | ) | |
| Package caption Info: New subtype `subfigure' on input line 239. | 197 | 197 | Package caption Info: New subtype `subfigure' on input line 239. | |
| \c@subfigure=\count271 | 198 | 198 | \c@subfigure=\count271 | |
| Package caption Info: New subtype `subtable' on input line 239. | 199 | 199 | Package caption Info: New subtype `subtable' on input line 239. | |
| \c@subtable=\count272 | 200 | 200 | \c@subtable=\count272 | |
| ) | 201 | 201 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/tools/tabularx.sty | 202 | 202 | (/usr/local/texlive/2023/texmf-dist/tex/latex/tools/tabularx.sty | |
| Package: tabularx 2020/01/15 v2.11c `tabularx' package (DPC) | 203 | 203 | Package: tabularx 2020/01/15 v2.11c `tabularx' package (DPC) | |
| 204 | 204 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/tools/array.sty | 205 | 205 | (/usr/local/texlive/2023/texmf-dist/tex/latex/tools/array.sty | |
| Package: array 2022/09/04 v2.5g Tabular extension package (FMi) | 206 | 206 | Package: array 2022/09/04 v2.5g Tabular extension package (FMi) | |
| \col@sep=\dimen163 | 207 | 207 | \col@sep=\dimen163 | |
| \ar@mcellbox=\box51 | 208 | 208 | \ar@mcellbox=\box51 | |
| \extrarowheight=\dimen164 | 209 | 209 | \extrarowheight=\dimen164 | |
| \NC@list=\toks18 | 210 | 210 | \NC@list=\toks18 | |
| \extratabsurround=\skip51 | 211 | 211 | \extratabsurround=\skip51 | |
| \backup@length=\skip52 | 212 | 212 | \backup@length=\skip52 | |
| \ar@cellbox=\box52 | 213 | 213 | \ar@cellbox=\box52 | |
| ) | 214 | 214 | ) | |
| \TX@col@width=\dimen165 | 215 | 215 | \TX@col@width=\dimen165 | |
| \TX@old@table=\dimen166 | 216 | 216 | \TX@old@table=\dimen166 | |
| \TX@old@col=\dimen167 | 217 | 217 | \TX@old@col=\dimen167 | |
| \TX@target=\dimen168 | 218 | 218 | \TX@target=\dimen168 | |
| \TX@delta=\dimen169 | 219 | 219 | \TX@delta=\dimen169 | |
| \TX@cols=\count273 | 220 | 220 | \TX@cols=\count273 | |
| \TX@ftn=\toks19 | 221 | 221 | \TX@ftn=\toks19 | |
| ) | 222 | 222 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/tools/multicol.sty | 223 | 223 | (/usr/local/texlive/2023/texmf-dist/tex/latex/tools/multicol.sty | |
| Package: multicol 2021/11/30 v1.9d multicolumn formatting (FMi) | 224 | 224 | Package: multicol 2021/11/30 v1.9d multicolumn formatting (FMi) | |
| \c@tracingmulticols=\count274 | 225 | 225 | \c@tracingmulticols=\count274 | |
| \mult@box=\box53 | 226 | 226 | \mult@box=\box53 | |
| \multicol@leftmargin=\dimen170 | 227 | 227 | \multicol@leftmargin=\dimen170 | |
| \c@unbalance=\count275 | 228 | 228 | \c@unbalance=\count275 | |
| \c@collectmore=\count276 | 229 | 229 | \c@collectmore=\count276 | |
| \doublecol@number=\count277 | 230 | 230 | \doublecol@number=\count277 | |
| \multicoltolerance=\count278 | 231 | 231 | \multicoltolerance=\count278 | |
| \multicolpretolerance=\count279 | 232 | 232 | \multicolpretolerance=\count279 | |
| \full@width=\dimen171 | 233 | 233 | \full@width=\dimen171 | |
| \page@free=\dimen172 | 234 | 234 | \page@free=\dimen172 | |
| \premulticols=\dimen173 | 235 | 235 | \premulticols=\dimen173 | |
| \postmulticols=\dimen174 | 236 | 236 | \postmulticols=\dimen174 | |
| \multicolsep=\skip53 | 237 | 237 | \multicolsep=\skip53 | |
| \multicolbaselineskip=\skip54 | 238 | 238 | \multicolbaselineskip=\skip54 | |
| \partial@page=\box54 | 239 | 239 | \partial@page=\box54 | |
| \last@line=\box55 | 240 | 240 | \last@line=\box55 | |
| \maxbalancingoverflow=\dimen175 | 241 | 241 | \maxbalancingoverflow=\dimen175 | |
| \mult@rightbox=\box56 | 242 | 242 | \mult@rightbox=\box56 | |
| \mult@grightbox=\box57 | 243 | 243 | \mult@grightbox=\box57 | |
| \mult@firstbox=\box58 | 244 | 244 | \mult@firstbox=\box58 | |
| \mult@gfirstbox=\box59 | 245 | 245 | \mult@gfirstbox=\box59 | |
| \@tempa=\box60 | 246 | 246 | \@tempa=\box60 | |
| \@tempa=\box61 | 247 | 247 | \@tempa=\box61 | |
| \@tempa=\box62 | 248 | 248 | \@tempa=\box62 | |
| \@tempa=\box63 | 249 | 249 | \@tempa=\box63 | |
| \@tempa=\box64 | 250 | 250 | \@tempa=\box64 | |
| \@tempa=\box65 | 251 | 251 | \@tempa=\box65 | |
| \@tempa=\box66 | 252 | 252 | \@tempa=\box66 | |
| \@tempa=\box67 | 253 | 253 | \@tempa=\box67 | |
| \@tempa=\box68 | 254 | 254 | \@tempa=\box68 | |
| \@tempa=\box69 | 255 | 255 | \@tempa=\box69 | |
| \@tempa=\box70 | 256 | 256 | \@tempa=\box70 | |
| \@tempa=\box71 | 257 | 257 | \@tempa=\box71 | |
| \@tempa=\box72 | 258 | 258 | \@tempa=\box72 | |
| \@tempa=\box73 | 259 | 259 | \@tempa=\box73 | |
| \@tempa=\box74 | 260 | 260 | \@tempa=\box74 | |
| \@tempa=\box75 | 261 | 261 | \@tempa=\box75 | |
| \@tempa=\box76 | 262 | 262 | \@tempa=\box76 | |
| \@tempa=\box77 | 263 | 263 | \@tempa=\box77 | |
| \@tempa=\box78 | 264 | 264 | \@tempa=\box78 | |
| \@tempa=\box79 | 265 | 265 | \@tempa=\box79 | |
| \@tempa=\box80 | 266 | 266 | \@tempa=\box80 | |
| \@tempa=\box81 | 267 | 267 | \@tempa=\box81 | |
| \@tempa=\box82 | 268 | 268 | \@tempa=\box82 | |
| \@tempa=\box83 | 269 | 269 | \@tempa=\box83 | |
| \@tempa=\box84 | 270 | 270 | \@tempa=\box84 | |
| \@tempa=\box85 | 271 | 271 | \@tempa=\box85 | |
| \@tempa=\box86 | 272 | 272 | \@tempa=\box86 | |
| \@tempa=\box87 | 273 | 273 | \@tempa=\box87 | |
| \@tempa=\box88 | 274 | 274 | \@tempa=\box88 | |
| \@tempa=\box89 | 275 | 275 | \@tempa=\box89 | |
| \@tempa=\box90 | 276 | 276 | \@tempa=\box90 | |
| \@tempa=\box91 | 277 | 277 | \@tempa=\box91 | |
| \@tempa=\box92 | 278 | 278 | \@tempa=\box92 | |
| \@tempa=\box93 | 279 | 279 | \@tempa=\box93 | |
| \@tempa=\box94 | 280 | 280 | \@tempa=\box94 | |
| \@tempa=\box95 | 281 | 281 | \@tempa=\box95 | |
| \c@minrows=\count280 | 282 | 282 | \c@minrows=\count280 | |
| \c@columnbadness=\count281 | 283 | 283 | \c@columnbadness=\count281 | |
| \c@finalcolumnbadness=\count282 | 284 | 284 | \c@finalcolumnbadness=\count282 | |
| \last@try=\dimen176 | 285 | 285 | \last@try=\dimen176 | |
| \multicolovershoot=\dimen177 | 286 | 286 | \multicolovershoot=\dimen177 | |
| \multicolundershoot=\dimen178 | 287 | 287 | \multicolundershoot=\dimen178 | |
| \mult@nat@firstbox=\box96 | 288 | 288 | \mult@nat@firstbox=\box96 | |
| \colbreak@box=\box97 | 289 | 289 | \colbreak@box=\box97 | |
| \mc@col@check@num=\count283 | 290 | 290 | \mc@col@check@num=\count283 | |
| ) | 291 | 291 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/colortbl/colortbl.sty | 292 | 292 | (/usr/local/texlive/2023/texmf-dist/tex/latex/colortbl/colortbl.sty | |
| Package: colortbl 2022/06/20 v1.0f Color table columns (DPC) | 293 | 293 | Package: colortbl 2022/06/20 v1.0f Color table columns (DPC) | |
| \everycr=\toks20 | 294 | 294 | \everycr=\toks20 | |
| \minrowclearance=\skip55 | 295 | 295 | \minrowclearance=\skip55 | |
| \rownum=\count284 | 296 | 296 | \rownum=\count284 | |
| ) | 297 | 297 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/picinpar/picinpar.sty | 298 | 298 | (/usr/local/texlive/2023/texmf-dist/tex/latex/picinpar/picinpar.sty | |
| Pictures in Paragraphs. Version 1.3, November 22, 2022 | 299 | 299 | Pictures in Paragraphs. Version 1.3, November 22, 2022 | |
| \br=\count285 | 300 | 300 | \br=\count285 | |
| \bl=\count286 | 301 | 301 | \bl=\count286 | |
| \na=\count287 | 302 | 302 | \na=\count287 | |
| \nb=\count288 | 303 | 303 | \nb=\count288 | |
| \tcdsav=\count289 | 304 | 304 | \tcdsav=\count289 | |
| \tcl=\count290 | 305 | 305 | \tcl=\count290 | |
| \tcd=\count291 | 306 | 306 | \tcd=\count291 | |
| \tcn=\count292 | 307 | 307 | \tcn=\count292 | |
| \cumtcl=\count293 | 308 | 308 | \cumtcl=\count293 | |
| \cumpartcl=\count294 | 309 | 309 | \cumpartcl=\count294 | |
| \lftside=\dimen179 | 310 | 310 | \lftside=\dimen179 | |
| \rtside=\dimen180 | 311 | 311 | \rtside=\dimen180 | |
| \hpic=\dimen181 | 312 | 312 | \hpic=\dimen181 | |
| \vpic=\dimen182 | 313 | 313 | \vpic=\dimen182 | |
| \strutilg=\dimen183 | 314 | 314 | \strutilg=\dimen183 | |
| \picwd=\dimen184 | 315 | 315 | \picwd=\dimen184 | |
| \topheight=\dimen185 | 316 | 316 | \topheight=\dimen185 | |
| \ilg=\dimen186 | 317 | 317 | \ilg=\dimen186 | |
| \lpic=\dimen187 | 318 | 318 | \lpic=\dimen187 | |
| \lwindowsep=\dimen188 | 319 | 319 | \lwindowsep=\dimen188 | |
| \rwindowsep=\dimen189 | 320 | 320 | \rwindowsep=\dimen189 | |
| \cumpar=\dimen190 | 321 | 321 | \cumpar=\dimen190 | |
| \twa=\toks21 | 322 | 322 | \twa=\toks21 | |
| \la=\toks22 | 323 | 323 | \la=\toks22 | |
| \ra=\toks23 | 324 | 324 | \ra=\toks23 | |
| \ha=\toks24 | 325 | 325 | \ha=\toks24 | |
| \pictoc=\toks25 | 326 | 326 | \pictoc=\toks25 | |
| \rawtext=\box98 | 327 | 327 | \rawtext=\box98 | |
| \holder=\box99 | 328 | 328 | \holder=\box99 | |
| \windowbox=\box100 | 329 | 329 | \windowbox=\box100 | |
| \wartext=\box101 | 330 | 330 | \wartext=\box101 | |
| \finaltext=\box102 | 331 | 331 | \finaltext=\box102 | |
| \aslice=\box103 | 332 | 332 | \aslice=\box103 | |
| \bslice=\box104 | 333 | 333 | \bslice=\box104 | |
| \wbox=\box105 | 334 | 334 | \wbox=\box105 | |
| \wstrutbox=\box106 | 335 | 335 | \wstrutbox=\box106 | |
| \picbox=\box107 | 336 | 336 | \picbox=\box107 | |
| \waslice=\box108 | 337 | 337 | \waslice=\box108 | |
| \wbslice=\box109 | 338 | 338 | \wbslice=\box109 | |
| \fslice=\box110 | 339 | 339 | \fslice=\box110 | |
| ) (/usr/local/texlive/2023/texmf-dist/tex/latex/amsmath/amsmath.sty | 340 | 340 | ) (/usr/local/texlive/2023/texmf-dist/tex/latex/amsmath/amsmath.sty | |
| Package: amsmath 2022/04/08 v2.17n AMS math features | 341 | 341 | Package: amsmath 2022/04/08 v2.17n AMS math features | |
| \@mathmargin=\skip56 | 342 | 342 | \@mathmargin=\skip56 | |
| 343 | 343 | |||
| For additional information on amsmath, use the `?' option. | 344 | 344 | For additional information on amsmath, use the `?' option. | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/amsmath/amstext.sty | 345 | 345 | (/usr/local/texlive/2023/texmf-dist/tex/latex/amsmath/amstext.sty | |
| Package: amstext 2021/08/26 v2.01 AMS text | 346 | 346 | Package: amstext 2021/08/26 v2.01 AMS text | |
| 347 | 347 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/amsmath/amsgen.sty | 348 | 348 | (/usr/local/texlive/2023/texmf-dist/tex/latex/amsmath/amsgen.sty | |
| File: amsgen.sty 1999/11/30 v2.0 generic functions | 349 | 349 | File: amsgen.sty 1999/11/30 v2.0 generic functions | |
| \@emptytoks=\toks26 | 350 | 350 | \@emptytoks=\toks26 | |
| \ex@=\dimen191 | 351 | 351 | \ex@=\dimen191 | |
| )) | 352 | 352 | )) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/amsmath/amsbsy.sty | 353 | 353 | (/usr/local/texlive/2023/texmf-dist/tex/latex/amsmath/amsbsy.sty | |
| Package: amsbsy 1999/11/29 v1.2d Bold Symbols | 354 | 354 | Package: amsbsy 1999/11/29 v1.2d Bold Symbols | |
| \pmbraise@=\dimen192 | 355 | 355 | \pmbraise@=\dimen192 | |
| ) | 356 | 356 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/amsmath/amsopn.sty | 357 | 357 | (/usr/local/texlive/2023/texmf-dist/tex/latex/amsmath/amsopn.sty | |
| Package: amsopn 2022/04/08 v2.04 operator names | 358 | 358 | Package: amsopn 2022/04/08 v2.04 operator names | |
| ) | 359 | 359 | ) | |
| \inf@bad=\count295 | 360 | 360 | \inf@bad=\count295 | |
| LaTeX Info: Redefining \frac on input line 234. | 361 | 361 | LaTeX Info: Redefining \frac on input line 234. | |
| \uproot@=\count296 | 362 | 362 | \uproot@=\count296 | |
| \leftroot@=\count297 | 363 | 363 | \leftroot@=\count297 | |
| LaTeX Info: Redefining \overline on input line 399. | 364 | 364 | LaTeX Info: Redefining \overline on input line 399. | |
| LaTeX Info: Redefining \colon on input line 410. | 365 | 365 | LaTeX Info: Redefining \colon on input line 410. | |
| \classnum@=\count298 | 366 | 366 | \classnum@=\count298 | |
| \DOTSCASE@=\count299 | 367 | 367 | \DOTSCASE@=\count299 | |
| LaTeX Info: Redefining \ldots on input line 496. | 368 | 368 | LaTeX Info: Redefining \ldots on input line 496. | |
| LaTeX Info: Redefining \dots on input line 499. | 369 | 369 | LaTeX Info: Redefining \dots on input line 499. | |
| LaTeX Info: Redefining \cdots on input line 620. | 370 | 370 | LaTeX Info: Redefining \cdots on input line 620. | |
| \Mathstrutbox@=\box111 | 371 | 371 | \Mathstrutbox@=\box111 | |
| \strutbox@=\box112 | 372 | 372 | \strutbox@=\box112 | |
| LaTeX Info: Redefining \big on input line 722. | 373 | 373 | LaTeX Info: Redefining \big on input line 722. | |
| LaTeX Info: Redefining \Big on input line 723. | 374 | 374 | LaTeX Info: Redefining \Big on input line 723. | |
| LaTeX Info: Redefining \bigg on input line 724. | 375 | 375 | LaTeX Info: Redefining \bigg on input line 724. | |
| LaTeX Info: Redefining \Bigg on input line 725. | 376 | 376 | LaTeX Info: Redefining \Bigg on input line 725. | |
| \big@size=\dimen193 | 377 | 377 | \big@size=\dimen193 | |
| LaTeX Font Info: Redeclaring font encoding OML on input line 743. | 378 | 378 | LaTeX Font Info: Redeclaring font encoding OML on input line 743. | |
| LaTeX Font Info: Redeclaring font encoding OMS on input line 744. | 379 | 379 | LaTeX Font Info: Redeclaring font encoding OMS on input line 744. | |
| \macc@depth=\count300 | 380 | 380 | \macc@depth=\count300 | |
| LaTeX Info: Redefining \bmod on input line 905. | 381 | 381 | LaTeX Info: Redefining \bmod on input line 905. | |
| LaTeX Info: Redefining \pmod on input line 910. | 382 | 382 | LaTeX Info: Redefining \pmod on input line 910. | |
| LaTeX Info: Redefining \smash on input line 940. | 383 | 383 | LaTeX Info: Redefining \smash on input line 940. | |
| LaTeX Info: Redefining \relbar on input line 970. | 384 | 384 | LaTeX Info: Redefining \relbar on input line 970. | |
| LaTeX Info: Redefining \Relbar on input line 971. | 385 | 385 | LaTeX Info: Redefining \Relbar on input line 971. | |
| \c@MaxMatrixCols=\count301 | 386 | 386 | \c@MaxMatrixCols=\count301 | |
| \dotsspace@=\muskip16 | 387 | 387 | \dotsspace@=\muskip16 | |
| \c@parentequation=\count302 | 388 | 388 | \c@parentequation=\count302 | |
| \dspbrk@lvl=\count303 | 389 | 389 | \dspbrk@lvl=\count303 | |
| \tag@help=\toks27 | 390 | 390 | \tag@help=\toks27 | |
| \row@=\count304 | 391 | 391 | \row@=\count304 | |
| \column@=\count305 | 392 | 392 | \column@=\count305 | |
| \maxfields@=\count306 | 393 | 393 | \maxfields@=\count306 | |
| \andhelp@=\toks28 | 394 | 394 | \andhelp@=\toks28 | |
| \eqnshift@=\dimen194 | 395 | 395 | \eqnshift@=\dimen194 | |
| \alignsep@=\dimen195 | 396 | 396 | \alignsep@=\dimen195 | |
| \tagshift@=\dimen196 | 397 | 397 | \tagshift@=\dimen196 | |
| \tagwidth@=\dimen197 | 398 | 398 | \tagwidth@=\dimen197 | |
| \totwidth@=\dimen198 | 399 | 399 | \totwidth@=\dimen198 | |
| \lineht@=\dimen199 | 400 | 400 | \lineht@=\dimen199 | |
| \@envbody=\toks29 | 401 | 401 | \@envbody=\toks29 | |
| \multlinegap=\skip57 | 402 | 402 | \multlinegap=\skip57 | |
| \multlinetaggap=\skip58 | 403 | 403 | \multlinetaggap=\skip58 | |
| \mathdisplay@stack=\toks30 | 404 | 404 | \mathdisplay@stack=\toks30 | |
| LaTeX Info: Redefining \[ on input line 2953. | 405 | 405 | LaTeX Info: Redefining \[ on input line 2953. | |
| LaTeX Info: Redefining \] on input line 2954. | 406 | 406 | LaTeX Info: Redefining \] on input line 2954. | |
| ) | 407 | 407 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/amscls/amsthm.sty | 408 | 408 | (/usr/local/texlive/2023/texmf-dist/tex/latex/amscls/amsthm.sty | |
| Package: amsthm 2020/05/29 v2.20.6 | 409 | 409 | Package: amsthm 2020/05/29 v2.20.6 | |
| \thm@style=\toks31 | 410 | 410 | \thm@style=\toks31 | |
| \thm@bodyfont=\toks32 | 411 | 411 | \thm@bodyfont=\toks32 | |
| \thm@headfont=\toks33 | 412 | 412 | \thm@headfont=\toks33 | |
| \thm@notefont=\toks34 | 413 | 413 | \thm@notefont=\toks34 | |
| \thm@headpunct=\toks35 | 414 | 414 | \thm@headpunct=\toks35 | |
| \thm@preskip=\skip59 | 415 | 415 | \thm@preskip=\skip59 | |
| \thm@postskip=\skip60 | 416 | 416 | \thm@postskip=\skip60 | |
| \thm@headsep=\skip61 | 417 | 417 | \thm@headsep=\skip61 | |
| \dth@everypar=\toks36 | 418 | 418 | \dth@everypar=\toks36 | |
| ) | 419 | 419 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/thmtools.sty | 420 | 420 | (/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/thmtools.sty | |
| Package: thmtools 2023/05/04 v0.76 | 421 | 421 | Package: thmtools 2023/05/04 v0.76 | |
| \thmt@toks=\toks37 | 422 | 422 | \thmt@toks=\toks37 | |
| \c@thmt@dummyctr=\count307 | 423 | 423 | \c@thmt@dummyctr=\count307 | |
| 424 | 424 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/thm-patch.sty | 425 | 425 | (/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/thm-patch.sty | |
| Package: thm-patch 2023/05/04 v0.76 | 426 | 426 | Package: thm-patch 2023/05/04 v0.76 | |
| 427 | 427 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/parseargs.sty | 428 | 428 | (/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/parseargs.sty | |
| Package: parseargs 2023/05/04 v0.76 | 429 | 429 | Package: parseargs 2023/05/04 v0.76 | |
| \@parsespec=\toks38 | 430 | 430 | \@parsespec=\toks38 | |
| )) | 431 | 431 | )) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/thm-kv.sty | 432 | 432 | (/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/thm-kv.sty | |
| Package: thm-kv 2023/05/04 v0.76 | 433 | 433 | Package: thm-kv 2023/05/04 v0.76 | |
| Package thm-kv Info: Theorem names will be uppercased on input line 42. | 434 | 434 | Package thm-kv Info: Theorem names will be uppercased on input line 42. | |
| 435 | 435 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty | 436 | 436 | (/usr/local/texlive/2023/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty | |
| Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO) | 437 | 437 | Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO) | |
| ) | 438 | 438 | ) | |
| Package thm-kv Info: kvsetkeys patch (v1.16 or later) on input line 158. | 439 | 439 | Package thm-kv Info: kvsetkeys patch (v1.16 or later) on input line 158. | |
| ) | 440 | 440 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/thm-autoref.sty | 441 | 441 | (/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/thm-autoref.sty | |
| Package: thm-autoref 2023/05/04 v0.76 | 442 | 442 | Package: thm-autoref 2023/05/04 v0.76 | |
| 443 | 443 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/aliasctr.sty | 444 | 444 | (/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/aliasctr.sty | |
| Package: aliasctr 2023/05/04 v0.76 | 445 | 445 | Package: aliasctr 2023/05/04 v0.76 | |
| )) | 446 | 446 | )) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/thm-listof.sty | 447 | 447 | (/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/thm-listof.sty | |
| Package: thm-listof 2023/05/04 v0.76 | 448 | 448 | Package: thm-listof 2023/05/04 v0.76 | |
| ) | 449 | 449 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/thm-restate.sty | 450 | 450 | (/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/thm-restate.sty | |
| Package: thm-restate 2023/05/04 v0.76 | 451 | 451 | Package: thm-restate 2023/05/04 v0.76 | |
| ) | 452 | 452 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/thm-amsthm.sty | 453 | 453 | (/usr/local/texlive/2023/texmf-dist/tex/latex/thmtools/thm-amsthm.sty | |
| Package: thm-amsthm 2023/05/04 v0.76 | 454 | 454 | Package: thm-amsthm 2023/05/04 v0.76 | |
| \thmt@style@headstyle=\toks39 | 455 | 455 | \thmt@style@headstyle=\toks39 | |
| )) | 456 | 456 | )) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/pifont.sty | 457 | 457 | (/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/pifont.sty | |
| Package: pifont 2020/03/25 PSNFSS-v9.3 Pi font support (SPQR) | 458 | 458 | Package: pifont 2020/03/25 PSNFSS-v9.3 Pi font support (SPQR) | |
| LaTeX Font Info: Trying to load font information for U+pzd on input line 63. | 459 | 459 | LaTeX Font Info: Trying to load font information for U+pzd on input line 63. | |
| 460 | 460 | |||
| 461 | 461 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/upzd.fd | 462 | 462 | (/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/upzd.fd | |
| File: upzd.fd 2001/06/04 font definitions for U/pzd. | 463 | 463 | File: upzd.fd 2001/06/04 font definitions for U/pzd. | |
| ) | 464 | 464 | ) | |
| LaTeX Font Info: Trying to load font information for U+psy on input line 64. | 465 | 465 | LaTeX Font Info: Trying to load font information for U+psy on input line 64. | |
| 466 | 466 | |||
| 467 | 467 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/upsy.fd | 468 | 468 | (/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/upsy.fd | |
| File: upsy.fd 2001/06/04 font definitions for U/psy. | 469 | 469 | File: upsy.fd 2001/06/04 font definitions for U/psy. | |
| )) | 470 | 470 | )) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/setspace/setspace.sty | 471 | 471 | (/usr/local/texlive/2023/texmf-dist/tex/latex/setspace/setspace.sty | |
| Package: setspace 2022/12/04 v6.7b set line spacing | 472 | 472 | Package: setspace 2022/12/04 v6.7b set line spacing | |
| ) | 473 | 473 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/tools/varioref.sty | 474 | 474 | (/usr/local/texlive/2023/texmf-dist/tex/latex/tools/varioref.sty | |
| Package: varioref 2022/01/09 v1.6f package for extended references (FMi) | 475 | 475 | Package: varioref 2022/01/09 v1.6f package for extended references (FMi) | |
| \c@vrcnt=\count308 | 476 | 476 | \c@vrcnt=\count308 | |
| ) | 477 | 477 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/txfonts.sty | 478 | 478 | (/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/txfonts.sty | |
| Package: txfonts 2008/01/22 v3.2.1 | 479 | 479 | Package: txfonts 2008/01/22 v3.2.1 | |
| LaTeX Font Info: Redeclaring symbol font `operators' on input line 21. | 480 | 480 | LaTeX Font Info: Redeclaring symbol font `operators' on input line 21. | |
| LaTeX Font Info: Overwriting symbol font `operators' in version `normal' | 481 | 481 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' | |
| (Font) OT1/cmr/m/n --> OT1/txr/m/n on input line 21. | 482 | 482 | (Font) OT1/cmr/m/n --> OT1/txr/m/n on input line 21. | |
| LaTeX Font Info: Overwriting symbol font `operators' in version `bold' | 483 | 483 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' | |
| (Font) OT1/cmr/bx/n --> OT1/txr/m/n on input line 21. | 484 | 484 | (Font) OT1/cmr/bx/n --> OT1/txr/m/n on input line 21. | |
| LaTeX Font Info: Overwriting symbol font `operators' in version `bold' | 485 | 485 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' | |
| (Font) OT1/txr/m/n --> OT1/txr/bx/n on input line 22. | 486 | 486 | (Font) OT1/txr/m/n --> OT1/txr/bx/n on input line 22. | |
| \symitalic=\mathgroup4 | 487 | 487 | \symitalic=\mathgroup4 | |
| LaTeX Font Info: Overwriting symbol font `italic' in version `bold' | 488 | 488 | LaTeX Font Info: Overwriting symbol font `italic' in version `bold' | |
| (Font) OT1/txr/m/it --> OT1/txr/bx/it on input line 26. | 489 | 489 | (Font) OT1/txr/m/it --> OT1/txr/bx/it on input line 26. | |
| LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 29. | 490 | 490 | LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 29. | |
| LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' | 491 | 491 | LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' | |
| (Font) OT1/cmr/bx/n --> OT1/txr/bx/n on input line 29. | 492 | 492 | (Font) OT1/cmr/bx/n --> OT1/txr/bx/n on input line 29. | |
| LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold' | 493 | 493 | LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold' | |
| (Font) OT1/cmr/bx/n --> OT1/txr/bx/n on input line 29. | 494 | 494 | (Font) OT1/cmr/bx/n --> OT1/txr/bx/n on input line 29. | |
| LaTeX Font Info: Redeclaring math alphabet \mathit on input line 30. | 495 | 495 | LaTeX Font Info: Redeclaring math alphabet \mathit on input line 30. | |
| LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' | 496 | 496 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' | |
| (Font) OT1/cmr/m/it --> OT1/txr/m/it on input line 30. | 497 | 497 | (Font) OT1/cmr/m/it --> OT1/txr/m/it on input line 30. | |
| LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' | 498 | 498 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' | |
| (Font) OT1/cmr/bx/it --> OT1/txr/m/it on input line 30. | 499 | 499 | (Font) OT1/cmr/bx/it --> OT1/txr/m/it on input line 30. | |
| LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' | 500 | 500 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' | |
| (Font) OT1/txr/m/it --> OT1/txr/bx/it on input line 31. | 501 | 501 | (Font) OT1/txr/m/it --> OT1/txr/bx/it on input line 31. | |
| LaTeX Font Info: Redeclaring math alphabet \mathsf on input line 40. | 502 | 502 | LaTeX Font Info: Redeclaring math alphabet \mathsf on input line 40. | |
| LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' | 503 | 503 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' | |
| (Font) OT1/cmss/m/n --> OT1/txss/m/n on input line 40. | 504 | 504 | (Font) OT1/cmss/m/n --> OT1/txss/m/n on input line 40. | |
| LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' | 505 | 505 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' | |
| (Font) OT1/cmss/bx/n --> OT1/txss/m/n on input line 40. | 506 | 506 | (Font) OT1/cmss/bx/n --> OT1/txss/m/n on input line 40. | |
| LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' | 507 | 507 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' | |
| (Font) OT1/txss/m/n --> OT1/txss/b/n on input line 41. | 508 | 508 | (Font) OT1/txss/m/n --> OT1/txss/b/n on input line 41. | |
| LaTeX Font Info: Redeclaring math alphabet \mathtt on input line 50. | 509 | 509 | LaTeX Font Info: Redeclaring math alphabet \mathtt on input line 50. | |
| LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' | 510 | 510 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' | |
| (Font) OT1/cmtt/m/n --> OT1/txtt/m/n on input line 50. | 511 | 511 | (Font) OT1/cmtt/m/n --> OT1/txtt/m/n on input line 50. | |
| LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' | 512 | 512 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' | |
| (Font) OT1/cmtt/m/n --> OT1/txtt/m/n on input line 50. | 513 | 513 | (Font) OT1/cmtt/m/n --> OT1/txtt/m/n on input line 50. | |
| LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' | 514 | 514 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' | |
| (Font) OT1/txtt/m/n --> OT1/txtt/b/n on input line 51. | 515 | 515 | (Font) OT1/txtt/m/n --> OT1/txtt/b/n on input line 51. | |
| LaTeX Font Info: Redeclaring symbol font `letters' on input line 58. | 516 | 516 | LaTeX Font Info: Redeclaring symbol font `letters' on input line 58. | |
| LaTeX Font Info: Overwriting symbol font `letters' in version `normal' | 517 | 517 | LaTeX Font Info: Overwriting symbol font `letters' in version `normal' | |
| (Font) OML/cmm/m/it --> OML/txmi/m/it on input line 58. | 518 | 518 | (Font) OML/cmm/m/it --> OML/txmi/m/it on input line 58. | |
| LaTeX Font Info: Overwriting symbol font `letters' in version `bold' | 519 | 519 | LaTeX Font Info: Overwriting symbol font `letters' in version `bold' | |
| (Font) OML/cmm/b/it --> OML/txmi/m/it on input line 58. | 520 | 520 | (Font) OML/cmm/b/it --> OML/txmi/m/it on input line 58. | |
| LaTeX Font Info: Overwriting symbol font `letters' in version `bold' | 521 | 521 | LaTeX Font Info: Overwriting symbol font `letters' in version `bold' | |
| (Font) OML/txmi/m/it --> OML/txmi/bx/it on input line 59. | 522 | 522 | (Font) OML/txmi/m/it --> OML/txmi/bx/it on input line 59. | |
| \symlettersA=\mathgroup5 | 523 | 523 | \symlettersA=\mathgroup5 | |
| LaTeX Font Info: Overwriting symbol font `lettersA' in version `bold' | 524 | 524 | LaTeX Font Info: Overwriting symbol font `lettersA' in version `bold' | |
| (Font) U/txmia/m/it --> U/txmia/bx/it on input line 67. | 525 | 525 | (Font) U/txmia/m/it --> U/txmia/bx/it on input line 67. | |
| LaTeX Font Info: Redeclaring symbol font `symbols' on input line 77. | 526 | 526 | LaTeX Font Info: Redeclaring symbol font `symbols' on input line 77. | |
| LaTeX Font Info: Overwriting symbol font `symbols' in version `normal' | 527 | 527 | LaTeX Font Info: Overwriting symbol font `symbols' in version `normal' | |
| (Font) OMS/cmsy/m/n --> OMS/txsy/m/n on input line 77. | 528 | 528 | (Font) OMS/cmsy/m/n --> OMS/txsy/m/n on input line 77. | |
| LaTeX Font Info: Overwriting symbol font `symbols' in version `bold' | 529 | 529 | LaTeX Font Info: Overwriting symbol font `symbols' in version `bold' | |
| (Font) OMS/cmsy/b/n --> OMS/txsy/m/n on input line 77. | 530 | 530 | (Font) OMS/cmsy/b/n --> OMS/txsy/m/n on input line 77. | |
| LaTeX Font Info: Overwriting symbol font `symbols' in version `bold' | 531 | 531 | LaTeX Font Info: Overwriting symbol font `symbols' in version `bold' | |
| (Font) OMS/txsy/m/n --> OMS/txsy/bx/n on input line 78. | 532 | 532 | (Font) OMS/txsy/m/n --> OMS/txsy/bx/n on input line 78. | |
| \symAMSa=\mathgroup6 | 533 | 533 | \symAMSa=\mathgroup6 | |
| LaTeX Font Info: Overwriting symbol font `AMSa' in version `bold' | 534 | 534 | LaTeX Font Info: Overwriting symbol font `AMSa' in version `bold' | |
| (Font) U/txsya/m/n --> U/txsya/bx/n on input line 94. | 535 | 535 | (Font) U/txsya/m/n --> U/txsya/bx/n on input line 94. | |
| \symAMSb=\mathgroup7 | 536 | 536 | \symAMSb=\mathgroup7 | |
| LaTeX Font Info: Overwriting symbol font `AMSb' in version `bold' | 537 | 537 | LaTeX Font Info: Overwriting symbol font `AMSb' in version `bold' | |
| (Font) U/txsyb/m/n --> U/txsyb/bx/n on input line 103. | 538 | 538 | (Font) U/txsyb/m/n --> U/txsyb/bx/n on input line 103. | |
| \symsymbolsC=\mathgroup8 | 539 | 539 | \symsymbolsC=\mathgroup8 | |
| LaTeX Font Info: Overwriting symbol font `symbolsC' in version `bold' | 540 | 540 | LaTeX Font Info: Overwriting symbol font `symbolsC' in version `bold' | |
| (Font) U/txsyc/m/n --> U/txsyc/bx/n on input line 113. | 541 | 541 | (Font) U/txsyc/m/n --> U/txsyc/bx/n on input line 113. | |
| LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 120. | 542 | 542 | LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 120. | |
| LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal' | 543 | 543 | LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal' | |
| (Font) OMX/cmex/m/n --> OMX/txex/m/n on input line 120. | 544 | 544 | (Font) OMX/cmex/m/n --> OMX/txex/m/n on input line 120. | |
| LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold' | 545 | 545 | LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold' | |
| (Font) OMX/cmex/m/n --> OMX/txex/m/n on input line 120. | 546 | 546 | (Font) OMX/cmex/m/n --> OMX/txex/m/n on input line 120. | |
| LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold' | 547 | 547 | LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold' | |
| (Font) OMX/txex/m/n --> OMX/txex/bx/n on input line 121. | 548 | 548 | (Font) OMX/txex/m/n --> OMX/txex/bx/n on input line 121. | |
| \symlargesymbolsA=\mathgroup9 | 549 | 549 | \symlargesymbolsA=\mathgroup9 | |
| LaTeX Font Info: Overwriting symbol font `largesymbolsA' in version `bold' | 550 | 550 | LaTeX Font Info: Overwriting symbol font `largesymbolsA' in version `bold' | |
| (Font) U/txexa/m/n --> U/txexa/bx/n on input line 129. | 551 | 551 | (Font) U/txexa/m/n --> U/txexa/bx/n on input line 129. | |
| LaTeX Font Info: Redeclaring math symbol \mathsterling on input line 164. | 552 | 552 | LaTeX Font Info: Redeclaring math symbol \mathsterling on input line 164. | |
| LaTeX Font Info: Redeclaring math symbol \hbar on input line 591. | 553 | 553 | LaTeX Font Info: Redeclaring math symbol \hbar on input line 591. | |
| LaTeX Info: Redefining \not on input line 1043. | 554 | 554 | LaTeX Info: Redefining \not on input line 1043. | |
| LaTeX Info: Redefining \textsquare on input line 1063. | 555 | 555 | LaTeX Info: Redefining \textsquare on input line 1063. | |
| LaTeX Info: Redefining \openbox on input line 1064. | 556 | 556 | LaTeX Info: Redefining \openbox on input line 1064. | |
| ) | 557 | 557 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/relsize/relsize.sty | 558 | 558 | (/usr/local/texlive/2023/texmf-dist/tex/latex/relsize/relsize.sty | |
| Package: relsize 2013/03/29 ver 4.1 | 559 | 559 | Package: relsize 2013/03/29 ver 4.1 | |
| ) | 560 | 560 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/xkeyval/xkeyval.sty | 561 | 561 | (/usr/local/texlive/2023/texmf-dist/tex/latex/xkeyval/xkeyval.sty | |
| Package: xkeyval 2022/06/16 v2.9 package option processing (HA) | 562 | 562 | Package: xkeyval 2022/06/16 v2.9 package option processing (HA) | |
| 563 | 563 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/generic/xkeyval/xkeyval.tex | 564 | 564 | (/usr/local/texlive/2023/texmf-dist/tex/generic/xkeyval/xkeyval.tex | |
| (/usr/local/texlive/2023/texmf-dist/tex/generic/xkeyval/xkvutils.tex | 565 | 565 | (/usr/local/texlive/2023/texmf-dist/tex/generic/xkeyval/xkvutils.tex | |
| \XKV@toks=\toks40 | 566 | 566 | \XKV@toks=\toks40 | |
| \XKV@tempa@toks=\toks41 | 567 | 567 | \XKV@tempa@toks=\toks41 | |
| ) | 568 | 568 | ) | |
| \XKV@depth=\count309 | 569 | 569 | \XKV@depth=\count309 | |
| File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) | 570 | 570 | File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) | |
| )) | 571 | 571 | )) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/hyphenat/hyphenat.sty | 572 | 572 | (/usr/local/texlive/2023/texmf-dist/tex/latex/hyphenat/hyphenat.sty | |
| Package: hyphenat 2009/09/02 v2.3c hyphenation utilities | 573 | 573 | Package: hyphenat 2009/09/02 v2.3c hyphenation utilities | |
| \langwohyphens=\language88 | 574 | 574 | \langwohyphens=\language88 | |
| LaTeX Info: Redefining \_ on input line 43. | 575 | 575 | LaTeX Info: Redefining \_ on input line 43. | |
| ) | 576 | 576 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/bbm-macros/bbm.sty | 577 | 577 | (/usr/local/texlive/2023/texmf-dist/tex/latex/bbm-macros/bbm.sty | |
| Package: bbm 1999/03/15 V 1.2 provides fonts for set symbols - TH | 578 | 578 | Package: bbm 1999/03/15 V 1.2 provides fonts for set symbols - TH | |
| LaTeX Font Info: Overwriting math alphabet `\mathbbm' in version `bold' | 579 | 579 | LaTeX Font Info: Overwriting math alphabet `\mathbbm' in version `bold' | |
| (Font) U/bbm/m/n --> U/bbm/bx/n on input line 33. | 580 | 580 | (Font) U/bbm/m/n --> U/bbm/bx/n on input line 33. | |
| LaTeX Font Info: Overwriting math alphabet `\mathbbmss' in version `bold' | 581 | 581 | LaTeX Font Info: Overwriting math alphabet `\mathbbmss' in version `bold' | |
| (Font) U/bbmss/m/n --> U/bbmss/bx/n on input line 35. | 582 | 582 | (Font) U/bbmss/m/n --> U/bbmss/bx/n on input line 35. | |
| ) | 583 | 583 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/environ/environ.sty | 584 | 584 | (/usr/local/texlive/2023/texmf-dist/tex/latex/environ/environ.sty | |
| Package: environ 2014/05/04 v0.3 A new way to define environments | 585 | 585 | Package: environ 2014/05/04 v0.3 A new way to define environments | |
| 586 | 586 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/trimspaces/trimspaces.sty | 587 | 587 | (/usr/local/texlive/2023/texmf-dist/tex/latex/trimspaces/trimspaces.sty | |
| Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list | 588 | 588 | Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list | |
| )) | 589 | 589 | )) | |
| \c@upm@subfigure@count=\count310 | 590 | 590 | \c@upm@subfigure@count=\count310 | |
| \c@upm@fmt@mtabular@columnnumber=\count311 | 591 | 591 | \c@upm@fmt@mtabular@columnnumber=\count311 | |
| \c@upm@format@section@sectionlevel=\count312 | 592 | 592 | \c@upm@format@section@sectionlevel=\count312 | |
| \c@upm@fmt@savedcounter=\count313 | 593 | 593 | \c@upm@fmt@savedcounter=\count313 | |
| \c@@@upm@fmt@inlineenumeration=\count314 | 594 | 594 | \c@@@upm@fmt@inlineenumeration=\count314 | |
| \c@@upm@fmt@enumdescription@cnt@=\count315 | 595 | 595 | \c@@upm@fmt@enumdescription@cnt@=\count315 | |
| \upm@framed@minipage=\box113 | 596 | 596 | \upm@framed@minipage=\box113 | |
| \upm@highlight@box@save=\box114 | 597 | 597 | \upm@highlight@box@save=\box114 | |
| \c@upmdefinition=\count316 | 598 | 598 | \c@upmdefinition=\count316 | |
| ) | 599 | 599 | ) | |
| (./upmethodology-version.sty | 600 | 600 | (./upmethodology-version.sty | |
| Package: upmethodology-version 2013/08/26 | 601 | 601 | Package: upmethodology-version 2013/08/26 | |
| 602 | 602 | |||
| **** upmethodology-version is using French language **** | 603 | 603 | **** upmethodology-version is using French language **** | |
| \upm@tmp@a=\count317 | 604 | 604 | \upm@tmp@a=\count317 | |
| ) | 605 | 605 | ) | |
| \listendskip=\skip62 | 606 | 606 | \listendskip=\skip62 | |
| ) | 607 | 607 | ) | |
| (./upmethodology-frontpage.sty | 608 | 608 | (./upmethodology-frontpage.sty | |
| Package: upmethodology-frontpage 2015/06/26 | 609 | 609 | Package: upmethodology-frontpage 2015/06/26 | |
| 610 | 610 | |||
| **** upmethodology-frontpage is using French language **** | 611 | 611 | **** upmethodology-frontpage is using French language **** | |
| \upm@front@tmpa=\dimen256 | 612 | 612 | \upm@front@tmpa=\dimen256 | |
| \upm@front@tmpb=\dimen257 | 613 | 613 | \upm@front@tmpb=\dimen257 | |
| 614 | 614 | |||
| *** define extension value frontillustrationsize ****) | 615 | 615 | *** define extension value frontillustrationsize ****) | |
| (./upmethodology-backpage.sty | 616 | 616 | (./upmethodology-backpage.sty | |
| Package: upmethodology-backpage 2013/12/14 | 617 | 617 | Package: upmethodology-backpage 2013/12/14 | |
| 618 | 618 | |||
| **** upmethodology-backpage is using French language ****) | 619 | 619 | **** upmethodology-backpage is using French language ****) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/url/url.sty | 620 | 620 | (/usr/local/texlive/2023/texmf-dist/tex/latex/url/url.sty | |
| \Urlmuskip=\muskip17 | 621 | 621 | \Urlmuskip=\muskip17 | |
| Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. | 622 | 622 | Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. | |
| ) | 623 | 623 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/hyperref/hyperref.sty | 624 | 624 | (/usr/local/texlive/2023/texmf-dist/tex/latex/hyperref/hyperref.sty | |
| Package: hyperref 2023-05-16 v7.00y Hypertext links for LaTeX | 625 | 625 | Package: hyperref 2023-05-16 v7.00y Hypertext links for LaTeX | |
| 626 | 626 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty | 627 | 627 | (/usr/local/texlive/2023/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty | |
| Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO) | 628 | 628 | Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO) | |
| ) | 629 | 629 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty | 630 | 630 | (/usr/local/texlive/2023/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty | |
| Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO | 631 | 631 | Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO | |
| ) | 632 | 632 | ) | |
| 633 | 633 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/generic/infwarerr/infwarerr.sty | 634 | 634 | (/usr/local/texlive/2023/texmf-dist/tex/generic/infwarerr/infwarerr.sty | |
| Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO) | 635 | 635 | Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO) | |
| ) | 636 | 636 | ) | |
| Package pdftexcmds Info: \pdf@primitive is available. | 637 | 637 | Package pdftexcmds Info: \pdf@primitive is available. | |
| Package pdftexcmds Info: \pdf@ifprimitive is available. | 638 | 638 | Package pdftexcmds Info: \pdf@ifprimitive is available. | |
| Package pdftexcmds Info: \pdfdraftmode found. | 639 | 639 | Package pdftexcmds Info: \pdfdraftmode found. | |
| ) | 640 | 640 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty | 641 | 641 | (/usr/local/texlive/2023/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty | |
| Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO) | 642 | 642 | Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO) | |
| ) | 643 | 643 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/generic/pdfescape/pdfescape.sty | 644 | 644 | (/usr/local/texlive/2023/texmf-dist/tex/generic/pdfescape/pdfescape.sty | |
| Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO) | 645 | 645 | Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO) | |
| ) | 646 | 646 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/hycolor/hycolor.sty | 647 | 647 | (/usr/local/texlive/2023/texmf-dist/tex/latex/hycolor/hycolor.sty | |
| Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO) | 648 | 648 | Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO) | |
| ) | 649 | 649 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty | 650 | 650 | (/usr/local/texlive/2023/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty | |
| Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO) | 651 | 651 | Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO) | |
| ) | 652 | 652 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/auxhook/auxhook.sty | 653 | 653 | (/usr/local/texlive/2023/texmf-dist/tex/latex/auxhook/auxhook.sty | |
| Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO) | 654 | 654 | Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO) | |
| ) | 655 | 655 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/hyperref/nameref.sty | 656 | 656 | (/usr/local/texlive/2023/texmf-dist/tex/latex/hyperref/nameref.sty | |
| Package: nameref 2023-05-16 v2.51 Cross-referencing by name of section | 657 | 657 | Package: nameref 2023-05-16 v2.51 Cross-referencing by name of section | |
| 658 | 658 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/refcount/refcount.sty | 659 | 659 | (/usr/local/texlive/2023/texmf-dist/tex/latex/refcount/refcount.sty | |
| Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO) | 660 | 660 | Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO) | |
| ) | 661 | 661 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/generic/gettitlestring/gettitlestring.s | 662 | 662 | (/usr/local/texlive/2023/texmf-dist/tex/generic/gettitlestring/gettitlestring.s | |
| ty | 663 | 663 | ty | |
| Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO) | 664 | 664 | Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/kvoptions/kvoptions.sty | 665 | 665 | (/usr/local/texlive/2023/texmf-dist/tex/latex/kvoptions/kvoptions.sty | |
| Package: kvoptions 2022-06-15 v3.15 Key value format for package options (HO) | 666 | 666 | Package: kvoptions 2022-06-15 v3.15 Key value format for package options (HO) | |
| )) | 667 | 667 | )) | |
| \c@section@level=\count318 | 668 | 668 | \c@section@level=\count318 | |
| ) | 669 | 669 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/etoolbox/etoolbox.sty | 670 | 670 | (/usr/local/texlive/2023/texmf-dist/tex/latex/etoolbox/etoolbox.sty | |
| Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW) | 671 | 671 | Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW) | |
| \etb@tempcnta=\count319 | 672 | 672 | \etb@tempcnta=\count319 | |
| ) | 673 | 673 | ) | |
| \@linkdim=\dimen258 | 674 | 674 | \@linkdim=\dimen258 | |
| \Hy@linkcounter=\count320 | 675 | 675 | \Hy@linkcounter=\count320 | |
| \Hy@pagecounter=\count321 | 676 | 676 | \Hy@pagecounter=\count321 | |
| 677 | 677 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/hyperref/pd1enc.def | 678 | 678 | (/usr/local/texlive/2023/texmf-dist/tex/latex/hyperref/pd1enc.def | |
| File: pd1enc.def 2023-05-16 v7.00y Hyperref: PDFDocEncoding definition (HO) | 679 | 679 | File: pd1enc.def 2023-05-16 v7.00y Hyperref: PDFDocEncoding definition (HO) | |
| Now handling font encoding PD1 ... | 680 | 680 | Now handling font encoding PD1 ... | |
| ... no UTF-8 mapping file for font encoding PD1 | 681 | 681 | ... no UTF-8 mapping file for font encoding PD1 | |
| ) | 682 | 682 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/generic/intcalc/intcalc.sty | 683 | 683 | (/usr/local/texlive/2023/texmf-dist/tex/generic/intcalc/intcalc.sty | |
| Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO) | 684 | 684 | Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO) | |
| ) | 685 | 685 | ) | |
| \Hy@SavedSpaceFactor=\count322 | 686 | 686 | \Hy@SavedSpaceFactor=\count322 | |
| 687 | 687 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/hyperref/puenc.def | 688 | 688 | (/usr/local/texlive/2023/texmf-dist/tex/latex/hyperref/puenc.def | |
| File: puenc.def 2023-05-16 v7.00y Hyperref: PDF Unicode definition (HO) | 689 | 689 | File: puenc.def 2023-05-16 v7.00y Hyperref: PDF Unicode definition (HO) | |
| Now handling font encoding PU ... | 690 | 690 | Now handling font encoding PU ... | |
| ... no UTF-8 mapping file for font encoding PU | 691 | 691 | ... no UTF-8 mapping file for font encoding PU | |
| ) | 692 | 692 | ) | |
| Package hyperref Info: Option `breaklinks' set `true' on input line 4050. | 693 | 693 | Package hyperref Info: Option `breaklinks' set `true' on input line 4050. | |
| Package hyperref Info: Option `pageanchor' set `true' on input line 4050. | 694 | 694 | Package hyperref Info: Option `pageanchor' set `true' on input line 4050. | |
| Package hyperref Info: Option `bookmarks' set `false' on input line 4050. | 695 | 695 | Package hyperref Info: Option `bookmarks' set `false' on input line 4050. | |
| Package hyperref Info: Option `hyperfigures' set `true' on input line 4050. | 696 | 696 | Package hyperref Info: Option `hyperfigures' set `true' on input line 4050. | |
| Package hyperref Info: Option `hyperindex' set `true' on input line 4050. | 697 | 697 | Package hyperref Info: Option `hyperindex' set `true' on input line 4050. | |
| Package hyperref Info: Option `linktocpage' set `true' on input line 4050. | 698 | 698 | Package hyperref Info: Option `linktocpage' set `true' on input line 4050. | |
| Package hyperref Info: Option `bookmarks' set `true' on input line 4050. | 699 | 699 | Package hyperref Info: Option `bookmarks' set `true' on input line 4050. | |
| Package hyperref Info: Option `bookmarksopen' set `true' on input line 4050. | 700 | 700 | Package hyperref Info: Option `bookmarksopen' set `true' on input line 4050. | |
| Package hyperref Info: Option `bookmarksnumbered' set `true' on input line 4050 | 701 | 701 | Package hyperref Info: Option `bookmarksnumbered' set `true' on input line 4050 | |
| . | 702 | 702 | . | |
| Package hyperref Info: Option `colorlinks' set `false' on input line 4050. | 703 | 703 | Package hyperref Info: Option `colorlinks' set `false' on input line 4050. | |
| Package hyperref Info: Hyper figures ON on input line 4165. | 704 | 704 | Package hyperref Info: Hyper figures ON on input line 4165. | |
| Package hyperref Info: Link nesting OFF on input line 4172. | 705 | 705 | Package hyperref Info: Link nesting OFF on input line 4172. | |
| Package hyperref Info: Hyper index ON on input line 4175. | 706 | 706 | Package hyperref Info: Hyper index ON on input line 4175. | |
| Package hyperref Info: Plain pages OFF on input line 4182. | 707 | 707 | Package hyperref Info: Plain pages OFF on input line 4182. | |
| Package hyperref Info: Backreferencing OFF on input line 4187. | 708 | 708 | Package hyperref Info: Backreferencing OFF on input line 4187. | |
| Package hyperref Info: Implicit mode ON; LaTeX internals redefined. | 709 | 709 | Package hyperref Info: Implicit mode ON; LaTeX internals redefined. | |
| Package hyperref Info: Bookmarks ON on input line 4434. | 710 | 710 | Package hyperref Info: Bookmarks ON on input line 4434. | |
| LaTeX Info: Redefining \href on input line 4683. | 711 | 711 | LaTeX Info: Redefining \href on input line 4683. | |
| \c@Hy@tempcnt=\count323 | 712 | 712 | \c@Hy@tempcnt=\count323 | |
| LaTeX Info: Redefining \url on input line 4772. | 713 | 713 | LaTeX Info: Redefining \url on input line 4772. | |
| \XeTeXLinkMargin=\dimen259 | 714 | 714 | \XeTeXLinkMargin=\dimen259 | |
| 715 | 715 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/generic/bitset/bitset.sty | 716 | 716 | (/usr/local/texlive/2023/texmf-dist/tex/generic/bitset/bitset.sty | |
| Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO) | 717 | 717 | Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO) | |
| 718 | 718 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty | 719 | 719 | (/usr/local/texlive/2023/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty | |
| Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO | 720 | 720 | Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO | |
| ) | 721 | 721 | ) | |
| )) | 722 | 722 | )) | |
| \Fld@menulength=\count324 | 723 | 723 | \Fld@menulength=\count324 | |
| \Field@Width=\dimen260 | 724 | 724 | \Field@Width=\dimen260 | |
| \Fld@charsize=\dimen261 | 725 | 725 | \Fld@charsize=\dimen261 | |
| Package hyperref Info: Hyper figures ON on input line 6049. | 726 | 726 | Package hyperref Info: Hyper figures ON on input line 6049. | |
| Package hyperref Info: Link nesting OFF on input line 6056. | 727 | 727 | Package hyperref Info: Link nesting OFF on input line 6056. | |
| Package hyperref Info: Hyper index ON on input line 6059. | 728 | 728 | Package hyperref Info: Hyper index ON on input line 6059. | |
| Package hyperref Info: backreferencing OFF on input line 6066. | 729 | 729 | Package hyperref Info: backreferencing OFF on input line 6066. | |
| Package hyperref Info: Link coloring OFF on input line 6071. | 730 | 730 | Package hyperref Info: Link coloring OFF on input line 6071. | |
| Package hyperref Info: Link coloring with OCG OFF on input line 6076. | 731 | 731 | Package hyperref Info: Link coloring with OCG OFF on input line 6076. | |
| Package hyperref Info: PDF/A mode OFF on input line 6081. | 732 | 732 | Package hyperref Info: PDF/A mode OFF on input line 6081. | |
| 733 | 733 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/base/atbegshi-ltx.sty | 734 | 734 | (/usr/local/texlive/2023/texmf-dist/tex/latex/base/atbegshi-ltx.sty | |
| Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi | 735 | 735 | Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi | |
| package with kernel methods | 736 | 736 | package with kernel methods | |
| ) | 737 | 737 | ) | |
| \Hy@abspage=\count325 | 738 | 738 | \Hy@abspage=\count325 | |
| \c@Item=\count326 | 739 | 739 | \c@Item=\count326 | |
| \c@Hfootnote=\count327 | 740 | 740 | \c@Hfootnote=\count327 | |
| ) | 741 | 741 | ) | |
| Package hyperref Info: Driver: hpdftex. | 742 | 742 | Package hyperref Info: Driver: hpdftex. | |
| 743 | 743 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/hyperref/hpdftex.def | 744 | 744 | (/usr/local/texlive/2023/texmf-dist/tex/latex/hyperref/hpdftex.def | |
| File: hpdftex.def 2023-05-16 v7.00y Hyperref driver for pdfTeX | 745 | 745 | File: hpdftex.def 2023-05-16 v7.00y Hyperref driver for pdfTeX | |
| 746 | 746 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/base/atveryend-ltx.sty | 747 | 747 | (/usr/local/texlive/2023/texmf-dist/tex/latex/base/atveryend-ltx.sty | |
| Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atveryend pac | 748 | 748 | Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atveryend pac | |
| kage | 749 | 749 | kage | |
| with kernel methods | 750 | 750 | with kernel methods | |
| ) | 751 | 751 | ) | |
| \Fld@listcount=\count328 | 752 | 752 | \Fld@listcount=\count328 | |
| \c@bookmark@seq@number=\count329 | 753 | 753 | \c@bookmark@seq@number=\count329 | |
| 754 | 754 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty | 755 | 755 | (/usr/local/texlive/2023/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty | |
| Package: rerunfilecheck 2022-07-10 v1.10 Rerun checks for auxiliary files (HO) | 756 | 756 | Package: rerunfilecheck 2022-07-10 v1.10 Rerun checks for auxiliary files (HO) | |
| 757 | 757 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty | 758 | 758 | (/usr/local/texlive/2023/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty | |
| Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO) | 759 | 759 | Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO) | |
| ) | 760 | 760 | ) | |
| Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2 | 761 | 761 | Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2 | |
| 85. | 762 | 762 | 85. | |
| ) | 763 | 763 | ) | |
| \Hy@SectionHShift=\skip63 | 764 | 764 | \Hy@SectionHShift=\skip63 | |
| ) | 765 | 765 | ) | |
| \upm@smalllogo@height=\dimen262 | 766 | 766 | \upm@smalllogo@height=\dimen262 | |
| ) (./spimbasephdthesis.sty | 767 | 767 | ) (./spimbasephdthesis.sty | |
| Package: spimbasephdthesis 2015/09/01 | 768 | 768 | Package: spimbasephdthesis 2015/09/01 | |
| 769 | 769 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/lettrine/lettrine.sty | 770 | 770 | (/usr/local/texlive/2023/texmf-dist/tex/latex/lettrine/lettrine.sty | |
| File: lettrine.sty 2023-04-18 v2.40 (Daniel Flipo) | 771 | 771 | File: lettrine.sty 2023-04-18 v2.40 (Daniel Flipo) | |
| 772 | 772 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/l3packages/xfp/xfp.sty | 773 | 773 | (/usr/local/texlive/2023/texmf-dist/tex/latex/l3packages/xfp/xfp.sty | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/l3kernel/expl3.sty | 774 | 774 | (/usr/local/texlive/2023/texmf-dist/tex/latex/l3kernel/expl3.sty | |
| Package: expl3 2023-05-22 L3 programming layer (loader) | 775 | 775 | Package: expl3 2023-05-22 L3 programming layer (loader) | |
| 776 | 776 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def | 777 | 777 | (/usr/local/texlive/2023/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def | |
| File: l3backend-pdftex.def 2023-04-19 L3 backend support: PDF output (pdfTeX) | 778 | 778 | File: l3backend-pdftex.def 2023-04-19 L3 backend support: PDF output (pdfTeX) | |
| \l__color_backend_stack_int=\count330 | 779 | 779 | \l__color_backend_stack_int=\count330 | |
| \l__pdf_internal_box=\box115 | 780 | 780 | \l__pdf_internal_box=\box115 | |
| )) | 781 | 781 | )) | |
| Package: xfp 2023-02-02 L3 Floating point unit | 782 | 782 | Package: xfp 2023-02-02 L3 Floating point unit | |
| ) | 783 | 783 | ) | |
| \c@DefaultLines=\count331 | 784 | 784 | \c@DefaultLines=\count331 | |
| \c@DefaultDepth=\count332 | 785 | 785 | \c@DefaultDepth=\count332 | |
| \DefaultFindent=\dimen263 | 786 | 786 | \DefaultFindent=\dimen263 | |
| \DefaultNindent=\dimen264 | 787 | 787 | \DefaultNindent=\dimen264 | |
| \DefaultSlope=\dimen265 | 788 | 788 | \DefaultSlope=\dimen265 | |
| \DiscardVskip=\dimen266 | 789 | 789 | \DiscardVskip=\dimen266 | |
| \L@lbox=\box116 | 790 | 790 | \L@lbox=\box116 | |
| \L@tbox=\box117 | 791 | 791 | \L@tbox=\box117 | |
| \c@L@lines=\count333 | 792 | 792 | \c@L@lines=\count333 | |
| \c@L@depth=\count334 | 793 | 793 | \c@L@depth=\count334 | |
| \L@Pindent=\dimen267 | 794 | 794 | \L@Pindent=\dimen267 | |
| \L@Findent=\dimen268 | 795 | 795 | \L@Findent=\dimen268 | |
| \L@Nindent=\dimen269 | 796 | 796 | \L@Nindent=\dimen269 | |
| \L@lraise=\dimen270 | 797 | 797 | \L@lraise=\dimen270 | |
| \L@first=\dimen271 | 798 | 798 | \L@first=\dimen271 | |
| \L@next=\dimen272 | 799 | 799 | \L@next=\dimen272 | |
| \L@slope=\dimen273 | 800 | 800 | \L@slope=\dimen273 | |
| \L@height=\dimen274 | 801 | 801 | \L@height=\dimen274 | |
| \L@novskip=\dimen275 | 802 | 802 | \L@novskip=\dimen275 | |
| \L@target@ht=\dimen276 | 803 | 803 | \L@target@ht=\dimen276 | |
| \L@target@dp=\dimen277 | 804 | 804 | \L@target@dp=\dimen277 | |
| \L@target@tht=\dimen278 | 805 | 805 | \L@target@tht=\dimen278 | |
| \LettrineWidth=\dimen279 | 806 | 806 | \LettrineWidth=\dimen279 | |
| \LettrineHeight=\dimen280 | 807 | 807 | \LettrineHeight=\dimen280 | |
| \LettrineDepth=\dimen281 | 808 | 808 | \LettrineDepth=\dimen281 | |
| Loading lettrine.cfg | 809 | 809 | Loading lettrine.cfg | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/lettrine/lettrine.cfg) | 810 | 810 | (/usr/local/texlive/2023/texmf-dist/tex/latex/lettrine/lettrine.cfg) | |
| \Llist@everypar=\toks42 | 811 | 811 | \Llist@everypar=\toks42 | |
| ) | 812 | 812 | ) | |
| *** define extension value backcovermessage ****) | 813 | 813 | *** define extension value backcovermessage ****) | |
| **** including upm extension spimufcphdthesis (upmext-spimufcphdthesis.cfg) *** | 814 | 814 | **** including upm extension spimufcphdthesis (upmext-spimufcphdthesis.cfg) *** | |
| * (./upmext-spimufcphdthesis.cfg *** define extension value copyright **** | 815 | 815 | * (./upmext-spimufcphdthesis.cfg *** define extension value copyright **** | |
| *** style extension spimufcphdthesis, Copyright {(c)} 2012--14 Dr. St\unhbox \v | 816 | 816 | *** style extension spimufcphdthesis, Copyright {(c)} 2012--14 Dr. St\unhbox \v | |
| oidb@x \bgroup \let \unhbox \voidb@x \setbox \@tempboxa \hbox {e\global \mathch | 817 | 817 | oidb@x \bgroup \let \unhbox \voidb@x \setbox \@tempboxa \hbox {e\global \mathch | |
| ardef \accent@spacefactor \spacefactor }\let \begingroup \let \typeout \protect | 818 | 818 | ardef \accent@spacefactor \spacefactor }\let \begingroup \let \typeout \protect | |
| \begingroup \def \MessageBreak { | 819 | 819 | \begingroup \def \MessageBreak { | |
| (Font) }\let \protect \immediate\write \m@ne {LaTeX Font Info: | 820 | 820 | (Font) }\let \protect \immediate\write \m@ne {LaTeX Font Info: | |
| on input line 5.}\endgroup \endgroup \relax \let \ignorespaces \relax \accent | 821 | 821 | on input line 5.}\endgroup \endgroup \relax \let \ignorespaces \relax \accent | |
| 19 e\egroup \spacefactor \accent@spacefactor phane GALLAND. **** | 822 | 822 | 19 e\egroup \spacefactor \accent@spacefactor phane GALLAND. **** | |
| *** define extension value trademarks **** | 823 | 823 | *** define extension value trademarks **** | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/helvet.sty | 824 | 824 | (/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/helvet.sty | |
| Package: helvet 2020/03/25 PSNFSS-v9.3 (WaS) | 825 | 825 | Package: helvet 2020/03/25 PSNFSS-v9.3 (WaS) | |
| ) | 826 | 826 | ) | |
| *** define extension value frontillustration **** | 827 | 827 | *** define extension value frontillustration **** | |
| *** define extension value p3illustration **** | 828 | 828 | *** define extension value p3illustration **** | |
| *** define extension value backillustration **** | 829 | 829 | *** define extension value backillustration **** | |
| *** define extension value watermarksize **** | 830 | 830 | *** define extension value watermarksize **** | |
| *** define extension value universityname **** | 831 | 831 | *** define extension value universityname **** | |
| *** define extension value speciality **** | 832 | 832 | *** define extension value speciality **** | |
| *** define extension value defensedate **** | 833 | 833 | *** define extension value defensedate **** | |
| *** define extension value jurytabwidth **** | 834 | 834 | *** define extension value jurytabwidth **** | |
| *** define extension value jurystyle **** | 835 | 835 | *** define extension value jurystyle **** | |
| *** define extension value defensemessage ****)) | 836 | 836 | *** define extension value defensemessage ****)) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/base/inputenc.sty | 837 | 837 | (/usr/local/texlive/2023/texmf-dist/tex/latex/base/inputenc.sty | |
| Package: inputenc 2021/02/14 v1.3d Input encoding file | 838 | 838 | Package: inputenc 2021/02/14 v1.3d Input encoding file | |
| \inpenc@prehook=\toks43 | 839 | 839 | \inpenc@prehook=\toks43 | |
| \inpenc@posthook=\toks44 | 840 | 840 | \inpenc@posthook=\toks44 | |
| ) | 841 | 841 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/base/fontenc.sty | 842 | 842 | (/usr/local/texlive/2023/texmf-dist/tex/latex/base/fontenc.sty | |
| Package: fontenc 2021/04/29 v2.0v Standard LaTeX package | 843 | 843 | Package: fontenc 2021/04/29 v2.0v Standard LaTeX package | |
| LaTeX Font Info: Trying to load font information for T1+phv on input line 11 | 844 | 844 | LaTeX Font Info: Trying to load font information for T1+phv on input line 11 | |
| 2. | 845 | 845 | 2. | |
| 846 | 846 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/t1phv.fd | 847 | 847 | (/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/t1phv.fd | |
| File: t1phv.fd 2020/03/25 scalable font definitions for T1/phv. | 848 | 848 | File: t1phv.fd 2020/03/25 scalable font definitions for T1/phv. | |
| )) | 849 | 849 | )) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/times.sty | 850 | 850 | (/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/times.sty | |
| Package: times 2020/03/25 PSNFSS-v9.3 (SPQR) | 851 | 851 | Package: times 2020/03/25 PSNFSS-v9.3 (SPQR) | |
| ) | 852 | 852 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/adjustbox/adjustbox.sty | 853 | 853 | (/usr/local/texlive/2023/texmf-dist/tex/latex/adjustbox/adjustbox.sty | |
| Package: adjustbox 2022/10/17 v1.3a Adjusting TeX boxes (trim, clip, ...) | 854 | 854 | Package: adjustbox 2022/10/17 v1.3a Adjusting TeX boxes (trim, clip, ...) | |
| 855 | 855 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/adjustbox/adjcalc.sty | 856 | 856 | (/usr/local/texlive/2023/texmf-dist/tex/latex/adjustbox/adjcalc.sty | |
| Package: adjcalc 2012/05/16 v1.1 Provides advanced setlength with multiple back | 857 | 857 | Package: adjcalc 2012/05/16 v1.1 Provides advanced setlength with multiple back | |
| -ends (calc, etex, pgfmath) | 858 | 858 | -ends (calc, etex, pgfmath) | |
| ) | 859 | 859 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/adjustbox/trimclip.sty | 860 | 860 | (/usr/local/texlive/2023/texmf-dist/tex/latex/adjustbox/trimclip.sty | |
| Package: trimclip 2020/08/19 v1.2 Trim and clip general TeX material | 861 | 861 | Package: trimclip 2020/08/19 v1.2 Trim and clip general TeX material | |
| 862 | 862 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/collectbox/collectbox.sty | 863 | 863 | (/usr/local/texlive/2023/texmf-dist/tex/latex/collectbox/collectbox.sty | |
| Package: collectbox 2022/10/17 v0.4c Collect macro arguments as boxes | 864 | 864 | Package: collectbox 2022/10/17 v0.4c Collect macro arguments as boxes | |
| \collectedbox=\box118 | 865 | 865 | \collectedbox=\box118 | |
| ) | 866 | 866 | ) | |
| \tc@llx=\dimen282 | 867 | 867 | \tc@llx=\dimen282 | |
| \tc@lly=\dimen283 | 868 | 868 | \tc@lly=\dimen283 | |
| \tc@urx=\dimen284 | 869 | 869 | \tc@urx=\dimen284 | |
| \tc@ury=\dimen285 | 870 | 870 | \tc@ury=\dimen285 | |
| Package trimclip Info: Using driver 'tc-pdftex.def'. | 871 | 871 | Package trimclip Info: Using driver 'tc-pdftex.def'. | |
| 872 | 872 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/adjustbox/tc-pdftex.def | 873 | 873 | (/usr/local/texlive/2023/texmf-dist/tex/latex/adjustbox/tc-pdftex.def | |
| File: tc-pdftex.def 2019/01/04 v2.2 Clipping driver for pdftex | 874 | 874 | File: tc-pdftex.def 2019/01/04 v2.2 Clipping driver for pdftex | |
| )) | 875 | 875 | )) | |
| \adjbox@Width=\dimen286 | 876 | 876 | \adjbox@Width=\dimen286 | |
| \adjbox@Height=\dimen287 | 877 | 877 | \adjbox@Height=\dimen287 | |
| \adjbox@Depth=\dimen288 | 878 | 878 | \adjbox@Depth=\dimen288 | |
| \adjbox@Totalheight=\dimen289 | 879 | 879 | \adjbox@Totalheight=\dimen289 | |
| \adjbox@pwidth=\dimen290 | 880 | 880 | \adjbox@pwidth=\dimen290 | |
| \adjbox@pheight=\dimen291 | 881 | 881 | \adjbox@pheight=\dimen291 | |
| \adjbox@pdepth=\dimen292 | 882 | 882 | \adjbox@pdepth=\dimen292 | |
| \adjbox@ptotalheight=\dimen293 | 883 | 883 | \adjbox@ptotalheight=\dimen293 | |
| 884 | 884 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/ifoddpage/ifoddpage.sty | 885 | 885 | (/usr/local/texlive/2023/texmf-dist/tex/latex/ifoddpage/ifoddpage.sty | |
| Package: ifoddpage 2022/10/18 v1.2 Conditionals for odd/even page detection | 886 | 886 | Package: ifoddpage 2022/10/18 v1.2 Conditionals for odd/even page detection | |
| \c@checkoddpage=\count335 | 887 | 887 | \c@checkoddpage=\count335 | |
| ) | 888 | 888 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/varwidth/varwidth.sty | 889 | 889 | (/usr/local/texlive/2023/texmf-dist/tex/latex/varwidth/varwidth.sty | |
| Package: varwidth 2009/03/30 ver 0.92; Variable-width minipages | 890 | 890 | Package: varwidth 2009/03/30 ver 0.92; Variable-width minipages | |
| \@vwid@box=\box119 | 891 | 891 | \@vwid@box=\box119 | |
| \sift@deathcycles=\count336 | 892 | 892 | \sift@deathcycles=\count336 | |
| \@vwid@loff=\dimen294 | 893 | 893 | \@vwid@loff=\dimen294 | |
| \@vwid@roff=\dimen295 | 894 | 894 | \@vwid@roff=\dimen295 | |
| )) | 895 | 895 | )) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/algorithms/algorithm.sty | 896 | 896 | (/usr/local/texlive/2023/texmf-dist/tex/latex/algorithms/algorithm.sty | |
| Package: algorithm 2009/08/24 v0.1 Document Style `algorithm' - floating enviro | 897 | 897 | Package: algorithm 2009/08/24 v0.1 Document Style `algorithm' - floating enviro | |
| nment | 898 | 898 | nment | |
| 899 | 899 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/float/float.sty | 900 | 900 | (/usr/local/texlive/2023/texmf-dist/tex/latex/float/float.sty | |
| Package: float 2001/11/08 v1.3d Float enhancements (AL) | 901 | 901 | Package: float 2001/11/08 v1.3d Float enhancements (AL) | |
| \c@float@type=\count337 | 902 | 902 | \c@float@type=\count337 | |
| \float@exts=\toks45 | 903 | 903 | \float@exts=\toks45 | |
| \float@box=\box120 | 904 | 904 | \float@box=\box120 | |
| \@float@everytoks=\toks46 | 905 | 905 | \@float@everytoks=\toks46 | |
| \@floatcapt=\box121 | 906 | 906 | \@floatcapt=\box121 | |
| ) | 907 | 907 | ) | |
| \@float@every@algorithm=\toks47 | 908 | 908 | \@float@every@algorithm=\toks47 | |
| \c@algorithm=\count338 | 909 | 909 | \c@algorithm=\count338 | |
| ) | 910 | 910 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/algorithmicx/algpseudocode.sty | 911 | 911 | (/usr/local/texlive/2023/texmf-dist/tex/latex/algorithmicx/algpseudocode.sty | |
| Package: algpseudocode | 912 | 912 | Package: algpseudocode | |
| 913 | 913 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/algorithmicx/algorithmicx.sty | 914 | 914 | (/usr/local/texlive/2023/texmf-dist/tex/latex/algorithmicx/algorithmicx.sty | |
| Package: algorithmicx 2005/04/27 v1.2 Algorithmicx | 915 | 915 | Package: algorithmicx 2005/04/27 v1.2 Algorithmicx | |
| 916 | 916 | |||
| Document Style algorithmicx 1.2 - a greatly improved `algorithmic' style | 917 | 917 | Document Style algorithmicx 1.2 - a greatly improved `algorithmic' style | |
| \c@ALG@line=\count339 | 918 | 918 | \c@ALG@line=\count339 | |
| \c@ALG@rem=\count340 | 919 | 919 | \c@ALG@rem=\count340 | |
| \c@ALG@nested=\count341 | 920 | 920 | \c@ALG@nested=\count341 | |
| \ALG@tlm=\skip64 | 921 | 921 | \ALG@tlm=\skip64 | |
| \ALG@thistlm=\skip65 | 922 | 922 | \ALG@thistlm=\skip65 | |
| \c@ALG@Lnr=\count342 | 923 | 923 | \c@ALG@Lnr=\count342 | |
| \c@ALG@blocknr=\count343 | 924 | 924 | \c@ALG@blocknr=\count343 | |
| \c@ALG@storecount=\count344 | 925 | 925 | \c@ALG@storecount=\count344 | |
| \c@ALG@tmpcounter=\count345 | 926 | 926 | \c@ALG@tmpcounter=\count345 | |
| \ALG@tmplength=\skip66 | 927 | 927 | \ALG@tmplength=\skip66 | |
| ) | 928 | 928 | ) | |
| Document Style - pseudocode environments for use with the `algorithmicx' style | 929 | 929 | Document Style - pseudocode environments for use with the `algorithmicx' style | |
| ) *** define extension value defensedate **** | 930 | 930 | ) *** define extension value defensedate **** | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/tools/layout.sty | 931 | 931 | (/usr/local/texlive/2023/texmf-dist/tex/latex/tools/layout.sty | |
| Package: layout 2021-03-10 v1.2e Show layout parameters | 932 | 932 | Package: layout 2021-03-10 v1.2e Show layout parameters | |
| \oneinch=\count346 | 933 | 933 | \oneinch=\count346 | |
| \cnt@paperwidth=\count347 | 934 | 934 | \cnt@paperwidth=\count347 | |
| \cnt@paperheight=\count348 | 935 | 935 | \cnt@paperheight=\count348 | |
| \cnt@hoffset=\count349 | 936 | 936 | \cnt@hoffset=\count349 | |
| \cnt@voffset=\count350 | 937 | 937 | \cnt@voffset=\count350 | |
| \cnt@textheight=\count351 | 938 | 938 | \cnt@textheight=\count351 | |
| \cnt@textwidth=\count352 | 939 | 939 | \cnt@textwidth=\count352 | |
| \cnt@topmargin=\count353 | 940 | 940 | \cnt@topmargin=\count353 | |
| \cnt@oddsidemargin=\count354 | 941 | 941 | \cnt@oddsidemargin=\count354 | |
| \cnt@evensidemargin=\count355 | 942 | 942 | \cnt@evensidemargin=\count355 | |
| \cnt@headheight=\count356 | 943 | 943 | \cnt@headheight=\count356 | |
| \cnt@headsep=\count357 | 944 | 944 | \cnt@headsep=\count357 | |
| \cnt@marginparsep=\count358 | 945 | 945 | \cnt@marginparsep=\count358 | |
| \cnt@marginparwidth=\count359 | 946 | 946 | \cnt@marginparwidth=\count359 | |
| \cnt@marginparpush=\count360 | 947 | 947 | \cnt@marginparpush=\count360 | |
| \cnt@footskip=\count361 | 948 | 948 | \cnt@footskip=\count361 | |
| \fheight=\count362 | 949 | 949 | \fheight=\count362 | |
| \ref@top=\count363 | 950 | 950 | \ref@top=\count363 | |
| \ref@hoffset=\count364 | 951 | 951 | \ref@hoffset=\count364 | |
| \ref@voffset=\count365 | 952 | 952 | \ref@voffset=\count365 | |
| \ref@head=\count366 | 953 | 953 | \ref@head=\count366 | |
| \ref@body=\count367 | 954 | 954 | \ref@body=\count367 | |
| \ref@foot=\count368 | 955 | 955 | \ref@foot=\count368 | |
| \ref@margin=\count369 | 956 | 956 | \ref@margin=\count369 | |
| \ref@marginwidth=\count370 | 957 | 957 | \ref@marginwidth=\count370 | |
| \ref@marginpar=\count371 | 958 | 958 | \ref@marginpar=\count371 | |
| \Interval=\count372 | 959 | 959 | \Interval=\count372 | |
| \ExtraYPos=\count373 | 960 | 960 | \ExtraYPos=\count373 | |
| \PositionX=\count374 | 961 | 961 | \PositionX=\count374 | |
| \PositionY=\count375 | 962 | 962 | \PositionY=\count375 | |
| \ArrowLength=\count376 | 963 | 963 | \ArrowLength=\count376 | |
| ) | 964 | 964 | ) | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/geometry/geometry.sty | 965 | 965 | (/usr/local/texlive/2023/texmf-dist/tex/latex/geometry/geometry.sty | |
| Package: geometry 2020/01/02 v5.9 Page Geometry | 966 | 966 | Package: geometry 2020/01/02 v5.9 Page Geometry | |
| 967 | 967 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/generic/iftex/ifvtex.sty | 968 | 968 | (/usr/local/texlive/2023/texmf-dist/tex/generic/iftex/ifvtex.sty | |
| Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. | 969 | 969 | Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. | |
| ) | 970 | 970 | ) | |
| \Gm@cnth=\count377 | 971 | 971 | \Gm@cnth=\count377 | |
| \Gm@cntv=\count378 | 972 | 972 | \Gm@cntv=\count378 | |
| \c@Gm@tempcnt=\count379 | 973 | 973 | \c@Gm@tempcnt=\count379 | |
| \Gm@bindingoffset=\dimen296 | 974 | 974 | \Gm@bindingoffset=\dimen296 | |
| \Gm@wd@mp=\dimen297 | 975 | 975 | \Gm@wd@mp=\dimen297 | |
| \Gm@odd@mp=\dimen298 | 976 | 976 | \Gm@odd@mp=\dimen298 | |
| \Gm@even@mp=\dimen299 | 977 | 977 | \Gm@even@mp=\dimen299 | |
| \Gm@layoutwidth=\dimen300 | 978 | 978 | \Gm@layoutwidth=\dimen300 | |
| \Gm@layoutheight=\dimen301 | 979 | 979 | \Gm@layoutheight=\dimen301 | |
| \Gm@layouthoffset=\dimen302 | 980 | 980 | \Gm@layouthoffset=\dimen302 | |
| \Gm@layoutvoffset=\dimen303 | 981 | 981 | \Gm@layoutvoffset=\dimen303 | |
| \Gm@dimlist=\toks48 | 982 | 982 | \Gm@dimlist=\toks48 | |
| ) (./main.aux | 983 | 983 | ) (./main.aux | |
| (./chapters/contexte2.aux) (./chapters/EIAH.aux) (./chapters/CBR.aux) | 984 | 984 | (./chapters/contexte2.aux) (./chapters/EIAH.aux) (./chapters/CBR.aux) | |
| (./chapters/Architecture.aux) (./chapters/ESCBR.aux) (./chapters/TS.aux | 985 | 985 | (./chapters/Architecture.aux) (./chapters/ESCBR.aux) (./chapters/TS.aux | |
| 986 | 986 | |||
| LaTeX Warning: Label `eqBeta' multiply defined. | 987 | 987 | LaTeX Warning: Label `eqBeta' multiply defined. | |
| 988 | 988 | |||
| 989 | 989 | |||
| LaTeX Warning: Label `fig:Amodel' multiply defined. | 990 | 990 | LaTeX Warning: Label `fig:Amodel' multiply defined. | |
| 991 | 991 | |||
| 992 | 992 | |||
| LaTeX Warning: Label `fig:stabilityBP' multiply defined. | 993 | 993 | LaTeX Warning: Label `fig:stabilityBP' multiply defined. | |
| 994 | 994 | |||
| ) (./chapters/Conclusions.aux) (./chapters/Publications.aux)) | 995 | 995 | ) (./chapters/Conclusions.aux) (./chapters/Publications.aux)) | |
| \openout1 = `main.aux'. | 996 | 996 | \openout1 = `main.aux'. | |
| 997 | 997 | |||
| LaTeX Font Info: Checking defaults for OML/txmi/m/it on input line 231. | 998 | 998 | LaTeX Font Info: Checking defaults for OML/txmi/m/it on input line 231. | |
| LaTeX Font Info: Trying to load font information for OML+txmi on input line | 999 | 999 | LaTeX Font Info: Trying to load font information for OML+txmi on input line | |
| 231. | 1000 | 1000 | 231. | |
| 1001 | 1001 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/omltxmi.fd | 1002 | 1002 | (/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/omltxmi.fd | |
| File: omltxmi.fd 2000/12/15 v3.1 | 1003 | 1003 | File: omltxmi.fd 2000/12/15 v3.1 | |
| ) | 1004 | 1004 | ) | |
| LaTeX Font Info: ... okay on input line 231. | 1005 | 1005 | LaTeX Font Info: ... okay on input line 231. | |
| LaTeX Font Info: Checking defaults for OMS/txsy/m/n on input line 231. | 1006 | 1006 | LaTeX Font Info: Checking defaults for OMS/txsy/m/n on input line 231. | |
| LaTeX Font Info: Trying to load font information for OMS+txsy on input line | 1007 | 1007 | LaTeX Font Info: Trying to load font information for OMS+txsy on input line | |
| 231. | 1008 | 1008 | 231. | |
| 1009 | 1009 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/omstxsy.fd | 1010 | 1010 | (/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/omstxsy.fd | |
| File: omstxsy.fd 2000/12/15 v3.1 | 1011 | 1011 | File: omstxsy.fd 2000/12/15 v3.1 | |
| ) | 1012 | 1012 | ) | |
| LaTeX Font Info: ... okay on input line 231. | 1013 | 1013 | LaTeX Font Info: ... okay on input line 231. | |
| LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 231. | 1014 | 1014 | LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 231. | |
| LaTeX Font Info: ... okay on input line 231. | 1015 | 1015 | LaTeX Font Info: ... okay on input line 231. | |
| LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 231. | 1016 | 1016 | LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 231. | |
| LaTeX Font Info: ... okay on input line 231. | 1017 | 1017 | LaTeX Font Info: ... okay on input line 231. | |
| LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 231. | 1018 | 1018 | LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 231. | |
| LaTeX Font Info: ... okay on input line 231. | 1019 | 1019 | LaTeX Font Info: ... okay on input line 231. | |
| LaTeX Font Info: Checking defaults for OMX/txex/m/n on input line 231. | 1020 | 1020 | LaTeX Font Info: Checking defaults for OMX/txex/m/n on input line 231. | |
| LaTeX Font Info: Trying to load font information for OMX+txex on input line | 1021 | 1021 | LaTeX Font Info: Trying to load font information for OMX+txex on input line | |
| 231. | 1022 | 1022 | 231. | |
| 1023 | 1023 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/omxtxex.fd | 1024 | 1024 | (/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/omxtxex.fd | |
| File: omxtxex.fd 2000/12/15 v3.1 | 1025 | 1025 | File: omxtxex.fd 2000/12/15 v3.1 | |
| ) | 1026 | 1026 | ) | |
| LaTeX Font Info: ... okay on input line 231. | 1027 | 1027 | LaTeX Font Info: ... okay on input line 231. | |
| LaTeX Font Info: Checking defaults for U/txexa/m/n on input line 231. | 1028 | 1028 | LaTeX Font Info: Checking defaults for U/txexa/m/n on input line 231. | |
| LaTeX Font Info: Trying to load font information for U+txexa on input line 2 | 1029 | 1029 | LaTeX Font Info: Trying to load font information for U+txexa on input line 2 | |
| 31. | 1030 | 1030 | 31. | |
| 1031 | 1031 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/utxexa.fd | 1032 | 1032 | (/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/utxexa.fd | |
| File: utxexa.fd 2000/12/15 v3.1 | 1033 | 1033 | File: utxexa.fd 2000/12/15 v3.1 | |
| ) | 1034 | 1034 | ) | |
| LaTeX Font Info: ... okay on input line 231. | 1035 | 1035 | LaTeX Font Info: ... okay on input line 231. | |
| LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 231. | 1036 | 1036 | LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 231. | |
| LaTeX Font Info: ... okay on input line 231. | 1037 | 1037 | LaTeX Font Info: ... okay on input line 231. | |
| LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 231. | 1038 | 1038 | LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 231. | |
| LaTeX Font Info: ... okay on input line 231. | 1039 | 1039 | LaTeX Font Info: ... okay on input line 231. | |
| 1040 | 1040 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/context/base/mkii/supp-pdf.mkii | 1041 | 1041 | (/usr/local/texlive/2023/texmf-dist/tex/context/base/mkii/supp-pdf.mkii | |
| [Loading MPS to PDF converter (version 2006.09.02).] | 1042 | 1042 | [Loading MPS to PDF converter (version 2006.09.02).] | |
| \scratchcounter=\count380 | 1043 | 1043 | \scratchcounter=\count380 | |
| \scratchdimen=\dimen304 | 1044 | 1044 | \scratchdimen=\dimen304 | |
| \scratchbox=\box122 | 1045 | 1045 | \scratchbox=\box122 | |
| \nofMPsegments=\count381 | 1046 | 1046 | \nofMPsegments=\count381 | |
| \nofMParguments=\count382 | 1047 | 1047 | \nofMParguments=\count382 | |
| \everyMPshowfont=\toks49 | 1048 | 1048 | \everyMPshowfont=\toks49 | |
| \MPscratchCnt=\count383 | 1049 | 1049 | \MPscratchCnt=\count383 | |
| \MPscratchDim=\dimen305 | 1050 | 1050 | \MPscratchDim=\dimen305 | |
| \MPnumerator=\count384 | 1051 | 1051 | \MPnumerator=\count384 | |
| \makeMPintoPDFobject=\count385 | 1052 | 1052 | \makeMPintoPDFobject=\count385 | |
| \everyMPtoPDFconversion=\toks50 | 1053 | 1053 | \everyMPtoPDFconversion=\toks50 | |
| ) (/usr/local/texlive/2023/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty | 1054 | 1054 | ) (/usr/local/texlive/2023/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty | |
| Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf | 1055 | 1055 | Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf | |
| Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 | 1056 | 1056 | Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 | |
| 85. | 1057 | 1057 | 85. | |
| 1058 | 1058 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg | 1059 | 1059 | (/usr/local/texlive/2023/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg | |
| File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv | 1060 | 1060 | File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv | |
| e | 1061 | 1061 | e | |
| )) | 1062 | 1062 | )) | |
| LaTeX Info: Redefining \degres on input line 231. | 1063 | 1063 | LaTeX Info: Redefining \degres on input line 231. | |
| LaTeX Info: Redefining \up on input line 231. | 1064 | 1064 | LaTeX Info: Redefining \up on input line 231. | |
| Package caption Info: Begin \AtBeginDocument code. | 1065 | 1065 | Package caption Info: Begin \AtBeginDocument code. | |
| Package caption Info: float package is loaded. | 1066 | 1066 | Package caption Info: float package is loaded. | |
| Package caption Info: hyperref package is loaded. | 1067 | 1067 | Package caption Info: hyperref package is loaded. | |
| Package caption Info: picinpar package is loaded. | 1068 | 1068 | Package caption Info: picinpar package is loaded. | |
| Package caption Info: End \AtBeginDocument code. | 1069 | 1069 | Package caption Info: End \AtBeginDocument code. | |
| 1070 | 1070 | |||
| *** Overriding the 'enumerate' environment. Pass option 'standardlists' for avo | 1071 | 1071 | *** Overriding the 'enumerate' environment. Pass option 'standardlists' for avo | |
| iding this override. | 1072 | 1072 | iding this override. | |
| *** Overriding the 'description' environment. Pass option 'standardlists' for a | 1073 | 1073 | *** Overriding the 'description' environment. Pass option 'standardlists' for a | |
| voiding this override. ************ USE CUSTOM FRONT COVER | 1074 | 1074 | voiding this override. ************ USE CUSTOM FRONT COVER | |
| Package hyperref Info: Link coloring OFF on input line 231. | 1075 | 1075 | Package hyperref Info: Link coloring OFF on input line 231. | |
| (./main.out) | 1076 | 1076 | (./main.out) | |
| (./main.out) | 1077 | 1077 | (./main.out) | |
| \@outlinefile=\write3 | 1078 | 1078 | \@outlinefile=\write3 | |
| \openout3 = `main.out'. | 1079 | 1079 | \openout3 = `main.out'. | |
| 1080 | 1080 | |||
| 1081 | 1081 | |||
| *geometry* driver: auto-detecting | 1082 | 1082 | *geometry* driver: auto-detecting | |
| *geometry* detected driver: pdftex | 1083 | 1083 | *geometry* detected driver: pdftex | |
| *geometry* verbose mode - [ preamble ] result: | 1084 | 1084 | *geometry* verbose mode - [ preamble ] result: | |
| * pass: disregarded the geometry package! | 1085 | 1085 | * pass: disregarded the geometry package! | |
| * \paperwidth=598.14806pt | 1086 | 1086 | * \paperwidth=598.14806pt | |
| * \paperheight=845.90042pt | 1087 | 1087 | * \paperheight=845.90042pt | |
| * \textwidth=427.43153pt | 1088 | 1088 | * \textwidth=427.43153pt | |
| * \textheight=671.71976pt | 1089 | 1089 | * \textheight=671.71976pt | |
| * \oddsidemargin=99.58464pt | 1090 | 1090 | * \oddsidemargin=99.58464pt | |
| * \evensidemargin=71.13188pt | 1091 | 1091 | * \evensidemargin=71.13188pt | |
| * \topmargin=56.9055pt | 1092 | 1092 | * \topmargin=56.9055pt | |
| * \headheight=12.0pt | 1093 | 1093 | * \headheight=12.0pt | |
| * \headsep=31.29802pt | 1094 | 1094 | * \headsep=31.29802pt | |
| * \topskip=11.0pt | 1095 | 1095 | * \topskip=11.0pt | |
| * \footskip=31.29802pt | 1096 | 1096 | * \footskip=31.29802pt | |
| * \marginparwidth=54.2025pt | 1097 | 1097 | * \marginparwidth=54.2025pt | |
| * \marginparsep=7.0pt | 1098 | 1098 | * \marginparsep=7.0pt | |
| * \columnsep=10.0pt | 1099 | 1099 | * \columnsep=10.0pt | |
| * \skip\footins=10.0pt plus 4.0pt minus 2.0pt | 1100 | 1100 | * \skip\footins=10.0pt plus 4.0pt minus 2.0pt | |
| * \hoffset=-72.26999pt | 1101 | 1101 | * \hoffset=-72.26999pt | |
| * \voffset=-72.26999pt | 1102 | 1102 | * \voffset=-72.26999pt | |
| * \mag=1000 | 1103 | 1103 | * \mag=1000 | |
| * \@twocolumnfalse | 1104 | 1104 | * \@twocolumnfalse | |
| * \@twosidetrue | 1105 | 1105 | * \@twosidetrue | |
| * \@mparswitchtrue | 1106 | 1106 | * \@mparswitchtrue | |
| * \@reversemarginfalse | 1107 | 1107 | * \@reversemarginfalse | |
| * (1in=72.27pt=25.4mm, 1cm=28.453pt) | 1108 | 1108 | * (1in=72.27pt=25.4mm, 1cm=28.453pt) | |
| 1109 | 1109 | |||
| *geometry* verbose mode - [ newgeometry ] result: | 1110 | 1110 | *geometry* verbose mode - [ newgeometry ] result: | |
| * driver: pdftex | 1111 | 1111 | * driver: pdftex | |
| * paper: a4paper | 1112 | 1112 | * paper: a4paper | |
| * layout: <same size as paper> | 1113 | 1113 | * layout: <same size as paper> | |
| * layoutoffset:(h,v)=(0.0pt,0.0pt) | 1114 | 1114 | * layoutoffset:(h,v)=(0.0pt,0.0pt) | |
| * modes: twoside | 1115 | 1115 | * modes: twoside | |
| * h-part:(L,W,R)=(170.71652pt, 355.65306pt, 71.77847pt) | 1116 | 1116 | * h-part:(L,W,R)=(170.71652pt, 355.65306pt, 71.77847pt) | |
| * v-part:(T,H,B)=(101.50906pt, 741.54591pt, 2.84544pt) | 1117 | 1117 | * v-part:(T,H,B)=(101.50906pt, 741.54591pt, 2.84544pt) | |
| * \paperwidth=598.14806pt | 1118 | 1118 | * \paperwidth=598.14806pt | |
| * \paperheight=845.90042pt | 1119 | 1119 | * \paperheight=845.90042pt | |
| * \textwidth=355.65306pt | 1120 | 1120 | * \textwidth=355.65306pt | |
| * \textheight=741.54591pt | 1121 | 1121 | * \textheight=741.54591pt | |
| * \oddsidemargin=98.44653pt | 1122 | 1122 | * \oddsidemargin=98.44653pt | |
| * \evensidemargin=-0.49152pt | 1123 | 1123 | * \evensidemargin=-0.49152pt | |
| * \topmargin=-14.05894pt | 1124 | 1124 | * \topmargin=-14.05894pt | |
| * \headheight=12.0pt | 1125 | 1125 | * \headheight=12.0pt | |
| * \headsep=31.29802pt | 1126 | 1126 | * \headsep=31.29802pt | |
| * \topskip=11.0pt | 1127 | 1127 | * \topskip=11.0pt | |
| * \footskip=31.29802pt | 1128 | 1128 | * \footskip=31.29802pt | |
| * \marginparwidth=54.2025pt | 1129 | 1129 | * \marginparwidth=54.2025pt | |
| * \marginparsep=7.0pt | 1130 | 1130 | * \marginparsep=7.0pt | |
| * \columnsep=10.0pt | 1131 | 1131 | * \columnsep=10.0pt | |
| * \skip\footins=10.0pt plus 4.0pt minus 2.0pt | 1132 | 1132 | * \skip\footins=10.0pt plus 4.0pt minus 2.0pt | |
| * \hoffset=-72.26999pt | 1133 | 1133 | * \hoffset=-72.26999pt | |
| * \voffset=-72.26999pt | 1134 | 1134 | * \voffset=-72.26999pt | |
| * \mag=1000 | 1135 | 1135 | * \mag=1000 | |
| * \@twocolumnfalse | 1136 | 1136 | * \@twocolumnfalse | |
| * \@twosidetrue | 1137 | 1137 | * \@twosidetrue | |
| * \@mparswitchtrue | 1138 | 1138 | * \@mparswitchtrue | |
| * \@reversemarginfalse | 1139 | 1139 | * \@reversemarginfalse | |
| * (1in=72.27pt=25.4mm, 1cm=28.453pt) | 1140 | 1140 | * (1in=72.27pt=25.4mm, 1cm=28.453pt) | |
| 1141 | 1141 | |||
| <images_logos/image1_logoUBFC_grand.png, id=385, 610.4406pt x 217.0509pt> | 1142 | 1142 | <images_logos/image1_logoUBFC_grand.png, id=385, 610.4406pt x 217.0509pt> | |
| File: images_logos/image1_logoUBFC_grand.png Graphic file (type png) | 1143 | 1143 | File: images_logos/image1_logoUBFC_grand.png Graphic file (type png) | |
| <use images_logos/image1_logoUBFC_grand.png> | 1144 | 1144 | <use images_logos/image1_logoUBFC_grand.png> | |
| Package pdftex.def Info: images_logos/image1_logoUBFC_grand.png used on input | 1145 | 1145 | Package pdftex.def Info: images_logos/image1_logoUBFC_grand.png used on input | |
| line 237. | 1146 | 1146 | line 237. | |
| (pdftex.def) Requested size: 142.25905pt x 50.57973pt. | 1147 | 1147 | (pdftex.def) Requested size: 142.25905pt x 50.57973pt. | |
| <images_logos/logo_UFC_2018_transparence.png, id=387, 104.5506pt x 34.6896pt> | 1148 | 1148 | <images_logos/logo_UFC_2018_transparence.png, id=387, 104.5506pt x 34.6896pt> | |
| File: images_logos/logo_UFC_2018_transparence.png Graphic file (type png) | 1149 | 1149 | File: images_logos/logo_UFC_2018_transparence.png Graphic file (type png) | |
| <use images_logos/logo_UFC_2018_transparence.png> | 1150 | 1150 | <use images_logos/logo_UFC_2018_transparence.png> | |
| Package pdftex.def Info: images_logos/logo_UFC_2018_transparence.png used on i | 1151 | 1151 | Package pdftex.def Info: images_logos/logo_UFC_2018_transparence.png used on i | |
| nput line 237. | 1152 | 1152 | nput line 237. | |
| (pdftex.def) Requested size: 142.25905pt x 47.20264pt. | 1153 | 1153 | (pdftex.def) Requested size: 142.25905pt x 47.20264pt. | |
| LaTeX Font Info: Trying to load font information for OT1+txr on input line 2 | 1154 | 1154 | LaTeX Font Info: Trying to load font information for OT1+txr on input line 2 | |
| 48. | 1155 | 1155 | 48. | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/ot1txr.fd | 1156 | 1156 | (/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/ot1txr.fd | |
| File: ot1txr.fd 2000/12/15 v3.1 | 1157 | 1157 | File: ot1txr.fd 2000/12/15 v3.1 | |
| ) | 1158 | 1158 | ) | |
| LaTeX Font Info: Trying to load font information for U+txmia on input line 2 | 1159 | 1159 | LaTeX Font Info: Trying to load font information for U+txmia on input line 2 | |
| 48. | 1160 | 1160 | 48. | |
| 1161 | 1161 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/utxmia.fd | 1162 | 1162 | (/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/utxmia.fd | |
| File: utxmia.fd 2000/12/15 v3.1 | 1163 | 1163 | File: utxmia.fd 2000/12/15 v3.1 | |
| ) | 1164 | 1164 | ) | |
| LaTeX Font Info: Trying to load font information for U+txsya on input line 2 | 1165 | 1165 | LaTeX Font Info: Trying to load font information for U+txsya on input line 2 | |
| 48. | 1166 | 1166 | 48. | |
| 1167 | 1167 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/utxsya.fd | 1168 | 1168 | (/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/utxsya.fd | |
| File: utxsya.fd 2000/12/15 v3.1 | 1169 | 1169 | File: utxsya.fd 2000/12/15 v3.1 | |
| ) | 1170 | 1170 | ) | |
| LaTeX Font Info: Trying to load font information for U+txsyb on input line 2 | 1171 | 1171 | LaTeX Font Info: Trying to load font information for U+txsyb on input line 2 | |
| 48. | 1172 | 1172 | 48. | |
| 1173 | 1173 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/utxsyb.fd | 1174 | 1174 | (/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/utxsyb.fd | |
| File: utxsyb.fd 2000/12/15 v3.1 | 1175 | 1175 | File: utxsyb.fd 2000/12/15 v3.1 | |
| ) | 1176 | 1176 | ) | |
| LaTeX Font Info: Trying to load font information for U+txsyc on input line 2 | 1177 | 1177 | LaTeX Font Info: Trying to load font information for U+txsyc on input line 2 | |
| 48. | 1178 | 1178 | 48. | |
| 1179 | 1179 | |||
| (/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/utxsyc.fd | 1180 | 1180 | (/usr/local/texlive/2023/texmf-dist/tex/latex/txfonts/utxsyc.fd | |
| File: utxsyc.fd 2000/12/15 v3.1 | 1181 | 1181 | File: utxsyc.fd 2000/12/15 v3.1 | |
| ) [1 | 1182 | 1182 | ) [1 | |
| 1183 | 1183 | |||
| 1184 | 1184 | |||
| 1185 | 1185 | |||
| 1186 | 1186 | |||
| {/usr/local/texlive/2023/texmf-var/fonts/map/pdftex/updmap/pdftex.map}{/usr/loc | 1187 | 1187 | {/usr/local/texlive/2023/texmf-var/fonts/map/pdftex/updmap/pdftex.map}{/usr/loc | |
| al/texlive/2023/texmf-dist/fonts/enc/dvips/base/8r.enc} <./images_logos/image1_ | 1188 | 1188 | al/texlive/2023/texmf-dist/fonts/enc/dvips/base/8r.enc} <./images_logos/image1_ | |
| logoUBFC_grand.png> <./images_logos/logo_UFC_2018_transparence.png>] [2 | 1189 | 1189 | logoUBFC_grand.png> <./images_logos/logo_UFC_2018_transparence.png>] [2 | |
| 1190 | 1190 | |||
| 1191 | 1191 | |||
| ] [3] [4] | 1192 | 1192 | ] [3] [4] | |
| (./main.toc | 1193 | 1193 | (./main.toc | |
| LaTeX Font Info: Font shape `T1/phv/m/it' in size <10.95> not available | 1194 | 1194 | LaTeX Font Info: Font shape `T1/phv/m/it' in size <10.95> not available | |
| (Font) Font shape `T1/phv/m/sl' tried instead on input line 24. | 1195 | 1195 | (Font) Font shape `T1/phv/m/sl' tried instead on input line 24. | |
| 1196 | 1196 | |||
| Underfull \vbox (badness 1043) has occurred while \output is active [] | 1197 | 1197 | Underfull \vbox (badness 1043) has occurred while \output is active [] | |
| 1198 | 1198 | |||
| [5 | 1199 | 1199 | [5 | |
| 1200 | 1200 | |||
| ] | 1201 | 1201 | ] | |
| [6] [7] | 1202 | 1202 | [6] [7] | |
| Overfull \hbox (1.29184pt too wide) detected at line 89 | 1203 | 1203 | Overfull \hbox (1.29184pt too wide) detected at line 89 | |
| [][]\T1/phv/m/n/10.95 100[] | 1204 | 1204 | [][]\T1/phv/m/n/10.95 100[] | |
| [] | 1205 | 1205 | [] | |
| 1206 | 1206 | |||
| 1207 | 1207 | |||
| Overfull \hbox (1.29184pt too wide) detected at line 90 | 1208 | 1208 | Overfull \hbox (1.29184pt too wide) detected at line 90 | |
| [][]\T1/phv/m/n/10.95 100[] | 1209 | 1209 | [][]\T1/phv/m/n/10.95 100[] | |
| [] | 1210 | 1210 | [] | |
| 1211 | 1211 | |||
| 1212 | 1212 | |||
| Overfull \hbox (1.29184pt too wide) detected at line 92 | 1213 | 1213 | Overfull \hbox (1.29184pt too wide) detected at line 92 | |
| [][]\T1/phv/m/n/10.95 103[] | 1214 | 1214 | [][]\T1/phv/m/n/10.95 103[] | |
| [] | 1215 | 1215 | [] | |
| 1216 | 1216 | |||
| 1217 | 1217 | |||
| Overfull \hbox (1.29184pt too wide) detected at line 93 | 1218 | 1218 | Overfull \hbox (1.29184pt too wide) detected at line 93 | |
| [][]\T1/phv/m/n/10.95 105[] | 1219 | 1219 | [][]\T1/phv/m/n/10.95 105[] | |
| [] | 1220 | 1220 | [] | |
| 1221 | 1221 | |||
| 1222 | 1222 | |||
| Overfull \hbox (1.29184pt too wide) detected at line 95 | 1223 | 1223 | Overfull \hbox (1.29184pt too wide) detected at line 95 | |
| [][]\T1/phv/m/n/10.95 107[] | 1224 | 1224 | [][]\T1/phv/m/n/10.95 107[] | |
| [] | 1225 | 1225 | [] | |
| 1226 | 1226 | |||
| 1227 | 1227 | |||
| Overfull \hbox (1.29184pt too wide) detected at line 96 | 1228 | 1228 | Overfull \hbox (1.29184pt too wide) detected at line 96 | |
| [][]\T1/phv/m/n/10.95 108[] | 1229 | 1229 | [][]\T1/phv/m/n/10.95 108[] | |
| [] | 1230 | 1230 | [] | |
| 1231 | 1231 | |||
| ) | 1232 | 1232 | ) | |
| \tf@toc=\write4 | 1233 | 1233 | \tf@toc=\write4 | |
| \openout4 = `main.toc'. | 1234 | 1234 | \openout4 = `main.toc'. | |
| 1235 | 1235 | |||
| [8] [1 | 1236 | 1236 | [8] [1 | |
| 1237 | 1237 | |||
| 1238 | 1238 | |||
| ] [2] | 1239 | 1239 | ] [2] | |
| Chapitre 1. | 1240 | 1240 | Chapitre 1. | |
| Package lettrine.sty Info: Targeted height = 19.96736pt | 1241 | 1241 | Package lettrine.sty Info: Targeted height = 19.96736pt | |
| (lettrine.sty) (for loversize=0, accent excluded), | 1242 | 1242 | (lettrine.sty) (for loversize=0, accent excluded), | |
| (lettrine.sty) Lettrine height = 20.612pt (\uppercase {C}); | 1243 | 1243 | (lettrine.sty) Lettrine height = 20.612pt (\uppercase {C}); | |
| (lettrine.sty) reported on input line 340. | 1244 | 1244 | (lettrine.sty) reported on input line 340. | |
| 1245 | 1245 | |||
| Overfull \hbox (6.79999pt too wide) in paragraph at lines 340--340 | 1246 | 1246 | Overfull \hbox (6.79999pt too wide) in paragraph at lines 340--340 | |
| [][][][] | 1247 | 1247 | [][][][] | |
| [] | 1248 | 1248 | [] | |
| 1249 | 1249 | |||
| 1250 | 1250 | |||
| Underfull \vbox (badness 10000) has occurred while \output is active [] | 1251 | 1251 | Underfull \vbox (badness 10000) has occurred while \output is active [] | |
| 1252 | 1252 | |||
| [3 | 1253 | 1253 | [3 | |
| 1254 | 1254 | |||
| ] | 1255 | 1255 | ] | |
| [4] [5] [6 | 1256 | 1256 | [4] [5] [6 | |
| 1257 | 1257 | |||
| ] [7] [8] | 1258 | 1258 | ] [7] [8] | |
| \openout2 = `./chapters/contexte2.aux'. | 1259 | 1259 | \openout2 = `./chapters/contexte2.aux'. | |
| 1260 | 1260 | |||
| (./chapters/contexte2.tex | 1261 | 1261 | (./chapters/contexte2.tex | |
| Chapitre 2. | 1262 | 1262 | Chapitre 2. | |
| <./Figures/TLearning.png, id=566, 603.25375pt x 331.2375pt> | 1263 | 1263 | <./Figures/TLearning.png, id=566, 603.25375pt x 331.2375pt> | |
| File: ./Figures/TLearning.png Graphic file (type png) | 1264 | 1264 | File: ./Figures/TLearning.png Graphic file (type png) | |
| <use ./Figures/TLearning.png> | 1265 | 1265 | <use ./Figures/TLearning.png> | |
| Package pdftex.def Info: ./Figures/TLearning.png used on input line 15. | 1266 | 1266 | Package pdftex.def Info: ./Figures/TLearning.png used on input line 15. | |
| (pdftex.def) Requested size: 427.43153pt x 234.69505pt. | 1267 | 1267 | (pdftex.def) Requested size: 427.43153pt x 234.69505pt. | |
| [9 | 1268 | 1268 | [9 | |
| 1269 | 1269 | |||
| 1270 | 1270 | |||
| ] | 1271 | 1271 | ] | |
| <./Figures/EIAH.png, id=575, 643.40375pt x 362.35374pt> | 1272 | 1272 | <./Figures/EIAH.png, id=575, 643.40375pt x 362.35374pt> | |
| File: ./Figures/EIAH.png Graphic file (type png) | 1273 | 1273 | File: ./Figures/EIAH.png Graphic file (type png) | |
| <use ./Figures/EIAH.png> | 1274 | 1274 | <use ./Figures/EIAH.png> | |
| Package pdftex.def Info: ./Figures/EIAH.png used on input line 32. | 1275 | 1275 | Package pdftex.def Info: ./Figures/EIAH.png used on input line 32. | |
| (pdftex.def) Requested size: 427.43153pt x 240.73pt. | 1276 | 1276 | (pdftex.def) Requested size: 427.43153pt x 240.73pt. | |
| 1277 | 1277 | |||
| 1278 | 1278 | |||
| LaTeX Warning: `!h' float specifier changed to `!ht'. | 1279 | 1279 | LaTeX Warning: `!h' float specifier changed to `!ht'. | |
| 1280 | 1280 | |||
| [10 <./Figures/TLearning.png>] [11 <./Figures/EIAH.png>] [12] | 1281 | 1281 | [10 <./Figures/TLearning.png>] [11 <./Figures/EIAH.png>] [12] | |
| <./Figures/cycle.png, id=603, 668.4975pt x 665.48625pt> | 1282 | 1282 | <./Figures/cycle.png, id=603, 668.4975pt x 665.48625pt> | |
| File: ./Figures/cycle.png Graphic file (type png) | 1283 | 1283 | File: ./Figures/cycle.png Graphic file (type png) | |
| <use ./Figures/cycle.png> | 1284 | 1284 | <use ./Figures/cycle.png> | |
| Package pdftex.def Info: ./Figures/cycle.png used on input line 83. | 1285 | 1285 | Package pdftex.def Info: ./Figures/cycle.png used on input line 83. | |
| (pdftex.def) Requested size: 427.43153pt x 425.51372pt. | 1286 | 1286 | (pdftex.def) Requested size: 427.43153pt x 425.51372pt. | |
| [13 <./Figures/cycle.png>] | 1287 | 1287 | [13 <./Figures/cycle.png>] | |
| <./Figures/Reuse.png, id=625, 383.4325pt x 182.6825pt> | 1288 | 1288 | <./Figures/Reuse.png, id=625, 383.4325pt x 182.6825pt> | |
| File: ./Figures/Reuse.png Graphic file (type png) | 1289 | 1289 | File: ./Figures/Reuse.png Graphic file (type png) | |
| <use ./Figures/Reuse.png> | 1290 | 1290 | <use ./Figures/Reuse.png> | |
| Package pdftex.def Info: ./Figures/Reuse.png used on input line 112. | 1291 | 1291 | Package pdftex.def Info: ./Figures/Reuse.png used on input line 112. | |
| (pdftex.def) Requested size: 299.20076pt x 142.55865pt. | 1292 | 1292 | (pdftex.def) Requested size: 299.20076pt x 142.55865pt. | |
| 1293 | 1293 | |||
| Underfull \hbox (badness 10000) in paragraph at lines 112--112 | 1294 | 1294 | Underfull \hbox (badness 10000) in paragraph at lines 112--112 | |
| []\T1/phv/m/sc/10.95 Figure 2.4 \T1/phv/m/n/10.95 ^^U |Prin-cipe de réuti-li-sa | 1295 | 1295 | []\T1/phv/m/sc/10.95 Figure 2.4 \T1/phv/m/n/10.95 ^^U |Prin-cipe de réuti-li-sa | |
| -tion dans le RàPC (Tra-duit de | 1296 | 1296 | -tion dans le RàPC (Tra-duit de | |
| [] | 1297 | 1297 | [] | |
| 1298 | 1298 | |||
| [14] | 1299 | 1299 | [14] | |
| Underfull \vbox (badness 10000) has occurred while \output is active [] | 1300 | 1300 | Underfull \vbox (badness 10000) has occurred while \output is active [] | |
| 1301 | 1301 | |||
| [15 <./Figures/Reuse.png>] | 1302 | 1302 | [15 <./Figures/Reuse.png>] | |
| <./Figures/CycleCBR.png, id=646, 147.1899pt x 83.8332pt> | 1303 | 1303 | <./Figures/CycleCBR.png, id=646, 147.1899pt x 83.8332pt> | |
| File: ./Figures/CycleCBR.png Graphic file (type png) | 1304 | 1304 | File: ./Figures/CycleCBR.png Graphic file (type png) | |
| <use ./Figures/CycleCBR.png> | 1305 | 1305 | <use ./Figures/CycleCBR.png> | |
| Package pdftex.def Info: ./Figures/CycleCBR.png used on input line 156. | 1306 | 1306 | Package pdftex.def Info: ./Figures/CycleCBR.png used on input line 156. | |
| (pdftex.def) Requested size: 427.43153pt x 243.45026pt. | 1307 | 1307 | (pdftex.def) Requested size: 427.43153pt x 243.45026pt. | |
| 1308 | 1308 | |||
| Underfull \vbox (badness 10000) has occurred while \output is active [] | 1309 | 1309 | Underfull \vbox (badness 10000) has occurred while \output is active [] | |
| 1310 | 1310 | |||
| [16 <./Figures/CycleCBR.png>] | 1311 | 1311 | [16 <./Figures/CycleCBR.png>] | |
| Underfull \vbox (badness 3189) has occurred while \output is active [] | 1312 | 1312 | Underfull \vbox (badness 3189) has occurred while \output is active [] | |
| 1313 | 1313 | |||
| [17] | 1314 | 1314 | [17] | |
| [18] | 1315 | 1315 | [18] | |
| 1316 | 1316 | |||
| LaTeX Warning: Command \textperiodcentered invalid in math mode on input line 2 | 1317 | 1317 | LaTeX Warning: Command \textperiodcentered invalid in math mode on input line 2 | |
| 65. | 1318 | 1318 | 65. | |
| 1319 | 1319 | |||
| LaTeX Font Info: Trying to load font information for TS1+phv on input line 2 | 1320 | 1320 | LaTeX Font Info: Trying to load font information for TS1+phv on input line 2 | |
| 65. | 1321 | 1321 | 65. | |
| (/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/ts1phv.fd | 1322 | 1322 | (/usr/local/texlive/2023/texmf-dist/tex/latex/psnfss/ts1phv.fd | |
| File: ts1phv.fd 2020/03/25 scalable font definitions for TS1/phv. | 1323 | 1323 | File: ts1phv.fd 2020/03/25 scalable font definitions for TS1/phv. | |
| ) | 1324 | 1324 | ) | |
| 1325 | 1325 | |||
| LaTeX Warning: Command \textperiodcentered invalid in math mode on input line 2 | 1326 | 1326 | LaTeX Warning: Command \textperiodcentered invalid in math mode on input line 2 | |
| 65. | 1327 | 1327 | 65. | |
| 1328 | 1328 | |||
| 1329 | 1329 | |||
| LaTeX Warning: Command \textperiodcentered invalid in math mode on input line 2 | 1330 | 1330 | LaTeX Warning: Command \textperiodcentered invalid in math mode on input line 2 | |
| 65. | 1331 | 1331 | 65. | |
| 1332 | 1332 | |||
| 1333 | 1333 | |||
| LaTeX Warning: Command \textperiodcentered invalid in math mode on input line 2 | 1334 | 1334 | LaTeX Warning: Command \textperiodcentered invalid in math mode on input line 2 | |
| 65. | 1335 | 1335 | 65. | |
| 1336 | 1336 | |||
| 1337 | 1337 | |||
| LaTeX Warning: Command \textperiodcentered invalid in math mode on input line 2 | 1338 | 1338 | LaTeX Warning: Command \textperiodcentered invalid in math mode on input line 2 | |
| 65. | 1339 | 1339 | 65. | |
| 1340 | 1340 | |||
| 1341 | 1341 | |||
| LaTeX Warning: Command \textperiodcentered invalid in math mode on input line 2 | 1342 | 1342 | LaTeX Warning: Command \textperiodcentered invalid in math mode on input line 2 | |
| 65. | 1343 | 1343 | 65. | |
| 1344 | 1344 | |||
| Missing character: There is no · in font txr! | 1345 | 1345 | Missing character: There is no · in font txr! | |
| Missing character: There is no · in font txr! | 1346 | 1346 | Missing character: There is no · in font txr! | |
| Missing character: There is no · in font txr! | 1347 | 1347 | Missing character: There is no · in font txr! | |
| 1348 | 1348 | |||
| LaTeX Font Warning: Font shape `T1/phv/m/scit' undefined | 1349 | 1349 | LaTeX Font Warning: Font shape `T1/phv/m/scit' undefined | |
| (Font) using `T1/phv/m/it' instead on input line 284. | 1350 | 1350 | (Font) using `T1/phv/m/it' instead on input line 284. | |
| 1351 | 1351 | |||
| [19] [20] | 1352 | 1352 | [19] [20] | |
| 1353 | 1353 | |||
| LaTeX Font Warning: Font shape `T1/phv/m/scit' undefined | 1354 | 1354 | LaTeX Font Warning: Font shape `T1/phv/m/scit' undefined | |
| (Font) using `T1/phv/m/it' instead on input line 333. | 1355 | 1355 | (Font) using `T1/phv/m/it' instead on input line 333. | |
| 1356 | 1356 | |||
| 1357 | 1357 | |||
| LaTeX Font Warning: Font shape `T1/phv/m/scit' undefined | 1358 | 1358 | LaTeX Font Warning: Font shape `T1/phv/m/scit' undefined | |
| (Font) using `T1/phv/m/it' instead on input line 337. | 1359 | 1359 | (Font) using `T1/phv/m/it' instead on input line 337. | |
| 1360 | 1360 | |||
| <./Figures/beta-distribution.png, id=722, 621.11293pt x 480.07928pt> | 1361 | 1361 | <./Figures/beta-distribution.png, id=722, 621.11293pt x 480.07928pt> | |
| File: ./Figures/beta-distribution.png Graphic file (type png) | 1362 | 1362 | File: ./Figures/beta-distribution.png Graphic file (type png) | |
| <use ./Figures/beta-distribution.png> | 1363 | 1363 | <use ./Figures/beta-distribution.png> | |
| Package pdftex.def Info: ./Figures/beta-distribution.png used on input line 34 | 1364 | 1364 | Package pdftex.def Info: ./Figures/beta-distribution.png used on input line 34 | |
| 5. | 1365 | 1365 | 5. | |
| (pdftex.def) Requested size: 427.43153pt x 330.38333pt. | 1366 | 1366 | (pdftex.def) Requested size: 427.43153pt x 330.38333pt. | |
| [21]) [22 <./Figures/beta-distribution.png>] | 1367 | 1367 | [21]) [22 <./Figures/beta-distribution.png>] | |
| \openout2 = `./chapters/EIAH.aux'. | 1368 | 1368 | \openout2 = `./chapters/EIAH.aux'. | |
| 1369 | 1369 | |||
| (./chapters/EIAH.tex | 1370 | 1370 | (./chapters/EIAH.tex | |
| Chapitre 3. | 1371 | 1371 | Chapitre 3. | |
| [23 | 1372 | 1372 | [23 | |
| 1373 | 1373 | |||
| 1374 | 1374 | |||
| 1375 | 1375 | |||
| 1376 | 1376 | |||
| ] | 1377 | 1377 | ] | |
| Underfull \hbox (badness 10000) in paragraph at lines 24--25 | 1378 | 1378 | Underfull \hbox (badness 10000) in paragraph at lines 24--25 | |
| []\T1/phv/m/n/10.95 Les tech-niques d'IA peuvent aussi ai-der à prendre des dé- | 1379 | 1379 | []\T1/phv/m/n/10.95 Les tech-niques d'IA peuvent aussi ai-der à prendre des dé- | |
| ci-sions stra-té- | 1380 | 1380 | ci-sions stra-té- | |
| [] | 1381 | 1381 | [] | |
| 1382 | 1382 | |||
| 1383 | 1383 | |||
| Underfull \hbox (badness 1874) in paragraph at lines 24--25 | 1384 | 1384 | Underfull \hbox (badness 1874) in paragraph at lines 24--25 | |
| \T1/phv/m/n/10.95 giques vi-sant des ob-jec-tifs à longue échéance comme le mon | 1385 | 1385 | \T1/phv/m/n/10.95 giques vi-sant des ob-jec-tifs à longue échéance comme le mon | |
| tre le tra-vail de | 1386 | 1386 | tre le tra-vail de | |
| [] | 1387 | 1387 | [] | |
| 1388 | 1388 | |||
| <./Figures/architecture.png, id=752, 776.9025pt x 454.69875pt> | 1389 | 1389 | <./Figures/architecture.png, id=752, 776.9025pt x 454.69875pt> | |
| File: ./Figures/architecture.png Graphic file (type png) | 1390 | 1390 | File: ./Figures/architecture.png Graphic file (type png) | |
| <use ./Figures/architecture.png> | 1391 | 1391 | <use ./Figures/architecture.png> | |
| Package pdftex.def Info: ./Figures/architecture.png used on input line 38. | 1392 | 1392 | Package pdftex.def Info: ./Figures/architecture.png used on input line 38. | |
| (pdftex.def) Requested size: 427.43153pt x 250.16833pt. | 1393 | 1393 | (pdftex.def) Requested size: 427.43153pt x 250.16833pt. | |
| [24] | 1394 | 1394 | [24] | |
| Underfull \vbox (badness 10000) has occurred while \output is active [] | 1395 | 1395 | Underfull \vbox (badness 10000) has occurred while \output is active [] | |
| 1396 | 1396 | |||
| [25 <./Figures/architecture.png>] | 1397 | 1397 | [25 <./Figures/architecture.png>] | |
| <./Figures/ELearningLevels.png, id=781, 602.25pt x 612.78937pt> | 1398 | 1398 | <./Figures/ELearningLevels.png, id=781, 602.25pt x 612.78937pt> | |
| File: ./Figures/ELearningLevels.png Graphic file (type png) | 1399 | 1399 | File: ./Figures/ELearningLevels.png Graphic file (type png) | |
| <use ./Figures/ELearningLevels.png> | 1400 | 1400 | <use ./Figures/ELearningLevels.png> | |
| Package pdftex.def Info: ./Figures/ELearningLevels.png used on input line 62. | 1401 | 1401 | Package pdftex.def Info: ./Figures/ELearningLevels.png used on input line 62. | |
| (pdftex.def) Requested size: 427.43153pt x 434.92455pt. | 1402 | 1402 | (pdftex.def) Requested size: 427.43153pt x 434.92455pt. | |
| 1403 | 1403 | |||
| Underfull \hbox (badness 3690) in paragraph at lines 62--62 | 1404 | 1404 | Underfull \hbox (badness 3690) in paragraph at lines 62--62 | |
| []\T1/phv/m/sc/10.95 Figure 3.2 \T1/phv/m/n/10.95 ^^U |Tra-duc-tion des ni-veau | 1405 | 1405 | []\T1/phv/m/sc/10.95 Figure 3.2 \T1/phv/m/n/10.95 ^^U |Tra-duc-tion des ni-veau | |
| x du sys-tème de re-com-man-da-tion dans | 1406 | 1406 | x du sys-tème de re-com-man-da-tion dans | |
| [] | 1407 | 1407 | [] | |
| 1408 | 1408 | |||
| 1409 | 1409 | |||
| Underfull \vbox (badness 10000) has occurred while \output is active [] | 1410 | 1410 | Underfull \vbox (badness 10000) has occurred while \output is active [] | |
| 1411 | 1411 | |||
| [26] | 1412 | 1412 | [26] | |
| Overfull \hbox (2.56369pt too wide) in paragraph at lines 82--82 | 1413 | 1413 | Overfull \hbox (2.56369pt too wide) in paragraph at lines 82--82 | |
| []|\T1/phv/m/n/9 [[]]| | 1414 | 1414 | []|\T1/phv/m/n/9 [[]]| | |
| [] | 1415 | 1415 | [] | |
| 1416 | 1416 | |||
| 1417 | 1417 | |||
| Overfull \hbox (0.5975pt too wide) in paragraph at lines 77--93 | 1418 | 1418 | Overfull \hbox (0.5975pt too wide) in paragraph at lines 77--93 | |
| [][] | 1419 | 1419 | [][] | |
| [] | 1420 | 1420 | [] | |
| 1421 | 1421 | |||
| ) [27 <./Figures/ELearningLevels.png>] [28] | 1422 | 1422 | ) [27 <./Figures/ELearningLevels.png>] [28] | |
| \openout2 = `./chapters/CBR.aux'. | 1423 | 1423 | \openout2 = `./chapters/CBR.aux'. | |
| 1424 | 1424 | |||
| (./chapters/CBR.tex | 1425 | 1425 | (./chapters/CBR.tex | |
| Chapitre 4. | 1426 | 1426 | Chapitre 4. | |
| [29 | 1427 | 1427 | [29 | |
| 1428 | 1428 | |||
| 1429 | 1429 | |||
| 1430 | 1430 | |||
| 1431 | 1431 | |||
| ] [30] | 1432 | 1432 | ] [30] | |
| Underfull \hbox (badness 1048) in paragraph at lines 26--27 | 1433 | 1433 | Underfull \hbox (badness 1048) in paragraph at lines 26--27 | |
| []\T1/phv/m/n/10.95 [[]] uti-lisent éga-le-ment le RàPC pour sé-lec-tion-ner la | 1434 | 1434 | []\T1/phv/m/n/10.95 [[]] uti-lisent éga-le-ment le RàPC pour sé-lec-tion-ner la | |
| 1435 | 1435 | |||
| [] | 1436 | 1436 | [] | |
| 1437 | 1437 | |||
| 1438 | 1438 | |||
| Overfull \hbox (24.44536pt too wide) has occurred while \output is active | 1439 | 1439 | Overfull \hbox (24.44536pt too wide) has occurred while \output is active | |
| \T1/phv/m/sl/10.95 4.3. TRAVAUX RÉCENTS SUR LA REPRÉSENTATION DES CAS ET LE CY | 1440 | 1440 | \T1/phv/m/sl/10.95 4.3. TRAVAUX RÉCENTS SUR LA REPRÉSENTATION DES CAS ET LE CY | |
| CLE DU RÀPC \T1/phv/m/n/10.95 31 | 1441 | 1441 | CLE DU RÀPC \T1/phv/m/n/10.95 31 | |
| [] | 1442 | 1442 | [] | |
| 1443 | 1443 | |||
| [31] | 1444 | 1444 | [31] | |
| <./Figures/ModCBR2.png, id=854, 1145.27875pt x 545.03625pt> | 1445 | 1445 | <./Figures/ModCBR2.png, id=854, 1145.27875pt x 545.03625pt> | |
| File: ./Figures/ModCBR2.png Graphic file (type png) | 1446 | 1446 | File: ./Figures/ModCBR2.png Graphic file (type png) | |
| <use ./Figures/ModCBR2.png> | 1447 | 1447 | <use ./Figures/ModCBR2.png> | |
| Package pdftex.def Info: ./Figures/ModCBR2.png used on input line 40. | 1448 | 1448 | Package pdftex.def Info: ./Figures/ModCBR2.png used on input line 40. | |
| (pdftex.def) Requested size: 427.43153pt x 203.41505pt. | 1449 | 1449 | (pdftex.def) Requested size: 427.43153pt x 203.41505pt. | |
| <./Figures/ModCBR1.png, id=859, 942.52126pt x 624.83438pt> | 1450 | 1450 | <./Figures/ModCBR1.png, id=859, 942.52126pt x 624.83438pt> | |
| File: ./Figures/ModCBR1.png Graphic file (type png) | 1451 | 1451 | File: ./Figures/ModCBR1.png Graphic file (type png) | |
| <use ./Figures/ModCBR1.png> | 1452 | 1452 | <use ./Figures/ModCBR1.png> | |
| Package pdftex.def Info: ./Figures/ModCBR1.png used on input line 46. | 1453 | 1453 | Package pdftex.def Info: ./Figures/ModCBR1.png used on input line 46. | |
| (pdftex.def) Requested size: 427.43153pt x 283.36574pt. | 1454 | 1454 | (pdftex.def) Requested size: 427.43153pt x 283.36574pt. | |
| [32 <./Figures/ModCBR2.png>] [33 <./Figures/ModCBR1.png>] [34] | 1455 | 1455 | [32 <./Figures/ModCBR2.png>] [33 <./Figures/ModCBR1.png>] [34] | |
| <./Figures/taxonomieEIAH.png, id=899, 984.67876pt x 614.295pt> | 1456 | 1456 | <./Figures/taxonomieEIAH.png, id=899, 984.67876pt x 614.295pt> | |
| File: ./Figures/taxonomieEIAH.png Graphic file (type png) | 1457 | 1457 | File: ./Figures/taxonomieEIAH.png Graphic file (type png) | |
| <use ./Figures/taxonomieEIAH.png> | 1458 | 1458 | <use ./Figures/taxonomieEIAH.png> | |
| Package pdftex.def Info: ./Figures/taxonomieEIAH.png used on input line 82. | 1459 | 1459 | Package pdftex.def Info: ./Figures/taxonomieEIAH.png used on input line 82. | |
| (pdftex.def) Requested size: 427.43153pt x 266.65376pt. | 1460 | 1460 | (pdftex.def) Requested size: 427.43153pt x 266.65376pt. | |
| 1461 | 1461 | |||
| Underfull \hbox (badness 1895) in paragraph at lines 91--91 | 1462 | 1462 | Underfull \hbox (badness 1895) in paragraph at lines 91--91 | |
| [][]\T1/phv/m/sc/14.4 Récapitulatif des li-mites des tra-vaux pré-sen-tés | 1463 | 1463 | [][]\T1/phv/m/sc/14.4 Récapitulatif des li-mites des tra-vaux pré-sen-tés | |
| [] | 1464 | 1464 | [] | |
| 1465 | 1465 | |||
| 1466 | 1466 | |||
| Underfull \vbox (badness 10000) has occurred while \output is active [] | 1467 | 1467 | Underfull \vbox (badness 10000) has occurred while \output is active [] | |
| 1468 | 1468 | |||
| [35] | 1469 | 1469 | [35] | |
| Overfull \hbox (2.19226pt too wide) in paragraph at lines 109--109 | 1470 | 1470 | Overfull \hbox (2.19226pt too wide) in paragraph at lines 109--109 | |
| []|\T1/phv/m/n/9 [[]]| | 1471 | 1471 | []|\T1/phv/m/n/9 [[]]| | |
| [] | 1472 | 1472 | [] | |
| 1473 | 1473 | |||
| 1474 | 1474 | |||
| Overfull \hbox (8.65419pt too wide) in paragraph at lines 115--115 | 1475 | 1475 | Overfull \hbox (8.65419pt too wide) in paragraph at lines 115--115 | |
| []|\T1/phv/m/n/9 [[]]| | 1476 | 1476 | []|\T1/phv/m/n/9 [[]]| | |
| [] | 1477 | 1477 | [] | |
| 1478 | 1478 | |||
| 1479 | 1479 | |||
| Overfull \hbox (1.23834pt too wide) in paragraph at lines 135--135 | 1480 | 1480 | Overfull \hbox (1.23834pt too wide) in paragraph at lines 135--135 | |
| []|\T1/phv/m/n/9 [[]]| | 1481 | 1481 | []|\T1/phv/m/n/9 [[]]| | |
| [] | 1482 | 1482 | [] | |
| 1483 | 1483 | |||
| 1484 | 1484 | |||
| Overfull \hbox (7.38495pt too wide) in paragraph at lines 143--143 | 1485 | 1485 | Overfull \hbox (7.38495pt too wide) in paragraph at lines 143--143 | |
| []|\T1/phv/m/n/9 [[]]| | 1486 | 1486 | []|\T1/phv/m/n/9 [[]]| | |
| [] | 1487 | 1487 | [] | |
| 1488 | 1488 | |||
| ) [36 <./Figures/taxonomieEIAH.png>] | 1489 | 1489 | ) [36 <./Figures/taxonomieEIAH.png>] | |
| Overfull \hbox (14.11055pt too wide) has occurred while \output is active | 1490 | 1490 | Overfull \hbox (14.11055pt too wide) has occurred while \output is active | |
| \T1/phv/m/sl/10.95 4.7. RÉCAPITULATIF DES LIMITES DES TRAVAUX PRÉSENTÉS DANS C | 1491 | 1491 | \T1/phv/m/sl/10.95 4.7. RÉCAPITULATIF DES LIMITES DES TRAVAUX PRÉSENTÉS DANS C | |
| E CHAPITRE \T1/phv/m/n/10.95 37 | 1492 | 1492 | E CHAPITRE \T1/phv/m/n/10.95 37 | |
| [] | 1493 | 1493 | [] | |
| 1494 | 1494 | |||
| [37] [38 | 1495 | 1495 | [37] [38 | |
| 1496 | 1496 | |||
| 1497 | 1497 | |||
| 1498 | 1498 | |||
| ] [39] [40] | 1499 | 1499 | ] [39] [40] | |
| \openout2 = `./chapters/Architecture.aux'. | 1500 | 1500 | \openout2 = `./chapters/Architecture.aux'. | |
| 1501 | 1501 | |||
| (./chapters/Architecture.tex | 1502 | 1502 | (./chapters/Architecture.tex | |
| Chapitre 5. | 1503 | 1503 | Chapitre 5. | |
| 1504 | 1504 | |||
| Underfull \vbox (badness 10000) has occurred while \output is active [] | 1505 | 1505 | Underfull \vbox (badness 10000) has occurred while \output is active [] | |
| 1506 | 1506 | |||
| [41 | 1507 | 1507 | [41 | |
| 1508 | 1508 | |||
| 1509 | 1509 | |||
| ] | 1510 | 1510 | ] | |
| <./Figures/AIVT.png, id=977, 1116.17pt x 512.91624pt> | 1511 | 1511 | <./Figures/AIVT.png, id=977, 1116.17pt x 512.91624pt> | |
| File: ./Figures/AIVT.png Graphic file (type png) | 1512 | 1512 | File: ./Figures/AIVT.png Graphic file (type png) | |
| <use ./Figures/AIVT.png> | 1513 | 1513 | <use ./Figures/AIVT.png> | |
| Package pdftex.def Info: ./Figures/AIVT.png used on input line 23. | 1514 | 1514 | Package pdftex.def Info: ./Figures/AIVT.png used on input line 23. | |
| (pdftex.def) Requested size: 427.43153pt x 196.41287pt. | 1515 | 1515 | (pdftex.def) Requested size: 427.43153pt x 196.41287pt. | |
| 1516 | 1516 | |||
| [42 <./Figures/AIVT.png>] | 1517 | 1517 | [42 <./Figures/AIVT.png>] | |
| Underfull \hbox (badness 3049) in paragraph at lines 44--45 | 1518 | 1518 | Underfull \hbox (badness 3049) in paragraph at lines 44--45 | |
| []|\T1/phv/m/n/10.95 Discipline des in-for-ma-tions conte- | 1519 | 1519 | []|\T1/phv/m/n/10.95 Discipline des in-for-ma-tions conte- | |
| [] | 1520 | 1520 | [] | |
| 1521 | 1521 | |||
| 1522 | 1522 | |||
| Underfull \hbox (badness 2435) in paragraph at lines 46--46 | 1523 | 1523 | Underfull \hbox (badness 2435) in paragraph at lines 46--46 | |
| []|\T1/phv/m/n/10.95 Le ni-veau sco-laire de la ma-tière | 1524 | 1524 | []|\T1/phv/m/n/10.95 Le ni-veau sco-laire de la ma-tière | |
| [] | 1525 | 1525 | [] | |
| 1526 | 1526 | |||
| 1527 | 1527 | |||
| Underfull \hbox (badness 7468) in paragraph at lines 47--48 | 1528 | 1528 | Underfull \hbox (badness 7468) in paragraph at lines 47--48 | |
| []|\T1/phv/m/n/10.95 Professeur, Ad-mi-nis- | 1529 | 1529 | []|\T1/phv/m/n/10.95 Professeur, Ad-mi-nis- | |
| [] | 1530 | 1530 | [] | |
| 1531 | 1531 | |||
| 1532 | 1532 | |||
| Underfull \hbox (badness 7468) in paragraph at lines 48--49 | 1533 | 1533 | Underfull \hbox (badness 7468) in paragraph at lines 48--49 | |
| []|\T1/phv/m/n/10.95 Professeur, Ad-mi-nis- | 1534 | 1534 | []|\T1/phv/m/n/10.95 Professeur, Ad-mi-nis- | |
| [] | 1535 | 1535 | [] | |
| 1536 | 1536 | |||
| 1537 | 1537 | |||
| Underfull \hbox (badness 5050) in paragraph at lines 52--52 | 1538 | 1538 | Underfull \hbox (badness 5050) in paragraph at lines 52--52 | |
| []|\T1/phv/m/n/10.95 Le type d'in-for-ma-tions conte-nues | 1539 | 1539 | []|\T1/phv/m/n/10.95 Le type d'in-for-ma-tions conte-nues | |
| [] | 1540 | 1540 | [] | |
| 1541 | 1541 | |||
| 1542 | 1542 | |||
| Underfull \hbox (badness 10000) in paragraph at lines 54--55 | 1543 | 1543 | Underfull \hbox (badness 10000) in paragraph at lines 54--55 | |
| []|\T1/phv/m/n/10.95 Connaissances et | 1544 | 1544 | []|\T1/phv/m/n/10.95 Connaissances et | |
| [] | 1545 | 1545 | [] | |
| 1546 | 1546 | |||
| 1547 | 1547 | |||
| Overfull \hbox (1.98096pt too wide) in paragraph at lines 57--57 | 1548 | 1548 | Overfull \hbox (1.98096pt too wide) in paragraph at lines 57--57 | |
| []|\T1/phv/m/n/10.95 Représentation | 1549 | 1549 | []|\T1/phv/m/n/10.95 Représentation | |
| [] | 1550 | 1550 | [] | |
| 1551 | 1551 | |||
| 1552 | 1552 | |||
| Overfull \hbox (1.98096pt too wide) in paragraph at lines 58--58 | 1553 | 1553 | Overfull \hbox (1.98096pt too wide) in paragraph at lines 58--58 | |
| []|\T1/phv/m/n/10.95 Représentation | 1554 | 1554 | []|\T1/phv/m/n/10.95 Représentation | |
| [] | 1555 | 1555 | [] | |
| 1556 | 1556 | |||
| 1557 | 1557 | |||
| Underfull \hbox (badness 10000) in paragraph at lines 59--60 | 1558 | 1558 | Underfull \hbox (badness 10000) in paragraph at lines 59--60 | |
| []|\T1/phv/m/n/10.95 Représentation tex- | 1559 | 1559 | []|\T1/phv/m/n/10.95 Représentation tex- | |
| [] | 1560 | 1560 | [] | |
| 1561 | 1561 | |||
| 1562 | 1562 | |||
| Underfull \hbox (badness 10000) in paragraph at lines 59--60 | 1563 | 1563 | Underfull \hbox (badness 10000) in paragraph at lines 59--60 | |
| \T1/phv/m/n/10.95 tuel et gra-phique | 1564 | 1564 | \T1/phv/m/n/10.95 tuel et gra-phique | |
| [] | 1565 | 1565 | [] | |
| 1566 | 1566 | |||
| 1567 | 1567 | |||
| Underfull \hbox (badness 2343) in paragraph at lines 63--64 | 1568 | 1568 | Underfull \hbox (badness 2343) in paragraph at lines 63--64 | |
| []|\T1/phv/m/n/10.95 Ordinateur ou ap-pa- | 1569 | 1569 | []|\T1/phv/m/n/10.95 Ordinateur ou ap-pa- | |
| [] | 1570 | 1570 | [] | |
| 1571 | 1571 | |||
| 1572 | 1572 | |||
| Underfull \vbox (badness 10000) has occurred while \output is active [] | 1573 | 1573 | Underfull \vbox (badness 10000) has occurred while \output is active [] | |
| 1574 | 1574 | |||
| [43] | 1575 | 1575 | [43] | |
| <./Figures/Architecture AI-VT2.png, id=993, 1029.8475pt x 948.54375pt> | 1576 | 1576 | <./Figures/Architecture AI-VT2.png, id=993, 1029.8475pt x 948.54375pt> | |
| File: ./Figures/Architecture AI-VT2.png Graphic file (type png) | 1577 | 1577 | File: ./Figures/Architecture AI-VT2.png Graphic file (type png) | |
| <use ./Figures/Architecture AI-VT2.png> | 1578 | 1578 | <use ./Figures/Architecture AI-VT2.png> | |
| Package pdftex.def Info: ./Figures/Architecture AI-VT2.png used on input line | 1579 | 1579 | Package pdftex.def Info: ./Figures/Architecture AI-VT2.png used on input line | |
| 80. | 1580 | 1580 | 80. | |
| (pdftex.def) Requested size: 427.43153pt x 393.68173pt. | 1581 | 1581 | (pdftex.def) Requested size: 427.43153pt x 393.68173pt. | |
| 1582 | 1582 | |||
| Underfull \vbox (badness 10000) has occurred while \output is active [] | 1583 | 1583 | Underfull \vbox (badness 10000) has occurred while \output is active [] | |
| 1584 | 1584 | |||
| [44] | 1585 | 1585 | [44] | |
| Underfull \vbox (badness 10000) has occurred while \output is active [] | 1586 | 1586 | Underfull \vbox (badness 10000) has occurred while \output is active [] | |
| 1587 | 1587 | |||
| [45 <./Figures/Architecture AI-VT2.png>] | 1588 | 1588 | [45 <./Figures/Architecture AI-VT2.png>] | |
| Underfull \vbox (badness 10000) has occurred while \output is active [] | 1589 | 1589 | Underfull \vbox (badness 10000) has occurred while \output is active [] | |
| 1590 | 1590 | |||
| [46] | 1591 | 1591 | [46] | |
| [47] [48] | 1592 | 1592 | [47] [48] | |
| <./Figures/Layers.png, id=1020, 392.46625pt x 216.81pt> | 1593 | 1593 | <./Figures/Layers.png, id=1020, 392.46625pt x 216.81pt> | |
| File: ./Figures/Layers.png Graphic file (type png) | 1594 | 1594 | File: ./Figures/Layers.png Graphic file (type png) | |
| <use ./Figures/Layers.png> | 1595 | 1595 | <use ./Figures/Layers.png> | |
| Package pdftex.def Info: ./Figures/Layers.png used on input line 153. | 1596 | 1596 | Package pdftex.def Info: ./Figures/Layers.png used on input line 153. | |
| (pdftex.def) Requested size: 313.9734pt x 173.44823pt. | 1597 | 1597 | (pdftex.def) Requested size: 313.9734pt x 173.44823pt. | |
| <./Figures/flow.png, id=1022, 721.69624pt x 593.21625pt> | 1598 | 1598 | <./Figures/flow.png, id=1022, 721.69624pt x 593.21625pt> | |
| File: ./Figures/flow.png Graphic file (type png) | 1599 | 1599 | File: ./Figures/flow.png Graphic file (type png) | |
| <use ./Figures/flow.png> | 1600 | 1600 | <use ./Figures/flow.png> | |
| Package pdftex.def Info: ./Figures/flow.png used on input line 164. | 1601 | 1601 | Package pdftex.def Info: ./Figures/flow.png used on input line 164. | |
| (pdftex.def) Requested size: 427.43153pt x 351.33421pt. | 1602 | 1602 | (pdftex.def) Requested size: 427.43153pt x 351.33421pt. | |
| ) [49 <./Figures/Layers.png>] [50 <./Figures/flow.png>] | 1603 | 1603 | ) [49 <./Figures/Layers.png>] [50 <./Figures/flow.png>] | |
| \openout2 = `./chapters/ESCBR.aux'. | 1604 | 1604 | \openout2 = `./chapters/ESCBR.aux'. | |
| 1605 | 1605 | |||
| 1606 | 1606 | |||
| (./chapters/ESCBR.tex | 1607 | 1607 | (./chapters/ESCBR.tex | |
| Chapitre 6. | 1608 | 1608 | Chapitre 6. | |
| 1609 | 1609 | |||
| Underfull \hbox (badness 1552) in paragraph at lines 7--9 | 1610 | 1610 | Underfull \hbox (badness 1552) in paragraph at lines 7--9 | |
| \T1/phv/m/n/10.95 multi-agents cog-ni-tifs im-plé-men-tant un rai-son-ne-ment b | 1611 | 1611 | \T1/phv/m/n/10.95 multi-agents cog-ni-tifs im-plé-men-tant un rai-son-ne-ment b | |
| ayé-sien. Cette as-so-cia-tion, | 1612 | 1612 | ayé-sien. Cette as-so-cia-tion, | |
| [] | 1613 | 1613 | [] | |
| 1614 | 1614 | |||
| 1615 | 1615 | |||
| Underfull \hbox (badness 10000) in paragraph at lines 7--9 | 1616 | 1616 | Underfull \hbox (badness 10000) in paragraph at lines 7--9 | |
| 1617 | 1617 | |||
| [] | 1618 | 1618 | [] | |
| 1619 | 1619 | |||
| [51 | 1620 | 1620 | [51 | |
| 1621 | 1621 | |||
| 1622 | 1622 | |||
| 1623 | 1623 | |||
| 1624 | 1624 | |||
| ] | 1625 | 1625 | ] | |
| Underfull \vbox (badness 10000) has occurred while \output is active [] | 1626 | 1626 | Underfull \vbox (badness 10000) has occurred while \output is active [] | |
| 1627 | 1627 | |||
| [52] | 1628 | 1628 | [52] | |
| <./Figures/NCBR0.png, id=1065, 623.32875pt x 459.7175pt> | 1629 | 1629 | <./Figures/NCBR0.png, id=1065, 623.32875pt x 459.7175pt> | |
| File: ./Figures/NCBR0.png Graphic file (type png) | 1630 | 1630 | File: ./Figures/NCBR0.png Graphic file (type png) | |
| <use ./Figures/NCBR0.png> | 1631 | 1631 | <use ./Figures/NCBR0.png> | |
| Package pdftex.def Info: ./Figures/NCBR0.png used on input line 33. | 1632 | 1632 | Package pdftex.def Info: ./Figures/NCBR0.png used on input line 33. | |
| (pdftex.def) Requested size: 427.43153pt x 315.24129pt. | 1633 | 1633 | (pdftex.def) Requested size: 427.43153pt x 315.24129pt. | |
| 1634 | 1634 | |||
| [53 <./Figures/NCBR0.png>] | 1635 | 1635 | [53 <./Figures/NCBR0.png>] | |
| <./Figures/FlowCBR0.png, id=1076, 370.38374pt x 661.47125pt> | 1636 | 1636 | <./Figures/FlowCBR0.png, id=1076, 370.38374pt x 661.47125pt> | |
| File: ./Figures/FlowCBR0.png Graphic file (type png) | 1637 | 1637 | File: ./Figures/FlowCBR0.png Graphic file (type png) | |
| <use ./Figures/FlowCBR0.png> | 1638 | 1638 | <use ./Figures/FlowCBR0.png> | |
| Package pdftex.def Info: ./Figures/FlowCBR0.png used on input line 42. | 1639 | 1639 | Package pdftex.def Info: ./Figures/FlowCBR0.png used on input line 42. | |
| (pdftex.def) Requested size: 222.23195pt x 396.8858pt. | 1640 | 1640 | (pdftex.def) Requested size: 222.23195pt x 396.8858pt. | |
| [54 <./Figures/FlowCBR0.png>] | 1641 | 1641 | [54 <./Figures/FlowCBR0.png>] | |
| <./Figures/Stacking1.png, id=1085, 743.77875pt x 414.54875pt> | 1642 | 1642 | <./Figures/Stacking1.png, id=1085, 743.77875pt x 414.54875pt> | |
| File: ./Figures/Stacking1.png Graphic file (type png) | 1643 | 1643 | File: ./Figures/Stacking1.png Graphic file (type png) | |
| <use ./Figures/Stacking1.png> | 1644 | 1644 | <use ./Figures/Stacking1.png> | |
| Package pdftex.def Info: ./Figures/Stacking1.png used on input line 81. | 1645 | 1645 | Package pdftex.def Info: ./Figures/Stacking1.png used on input line 81. | |
| (pdftex.def) Requested size: 427.43153pt x 238.23717pt. | 1646 | 1646 | (pdftex.def) Requested size: 427.43153pt x 238.23717pt. | |
| [55] | 1647 | 1647 | [55] | |
| <./Figures/SolRep.png, id=1096, 277.035pt x 84.315pt> | 1648 | 1648 | <./Figures/SolRep.png, id=1096, 277.035pt x 84.315pt> | |
| File: ./Figures/SolRep.png Graphic file (type png) | 1649 | 1649 | File: ./Figures/SolRep.png Graphic file (type png) | |
| <use ./Figures/SolRep.png> | 1650 | 1650 | <use ./Figures/SolRep.png> | |
| Package pdftex.def Info: ./Figures/SolRep.png used on input line 95. | 1651 | 1651 | Package pdftex.def Info: ./Figures/SolRep.png used on input line 95. | |
| (pdftex.def) Requested size: 277.03432pt x 84.31477pt. | 1652 | 1652 | (pdftex.def) Requested size: 277.03432pt x 84.31477pt. | |
| <./Figures/AutomaticS.png, id=1097, 688.5725pt x 548.0475pt> | 1653 | 1653 | <./Figures/AutomaticS.png, id=1097, 688.5725pt x 548.0475pt> | |
| File: ./Figures/AutomaticS.png Graphic file (type png) | 1654 | 1654 | File: ./Figures/AutomaticS.png Graphic file (type png) | |
| <use ./Figures/AutomaticS.png> | 1655 | 1655 | <use ./Figures/AutomaticS.png> | |
| Package pdftex.def Info: ./Figures/AutomaticS.png used on input line 104. | 1656 | 1656 | Package pdftex.def Info: ./Figures/AutomaticS.png used on input line 104. | |
| (pdftex.def) Requested size: 427.43153pt x 340.20406pt. | 1657 | 1657 | (pdftex.def) Requested size: 427.43153pt x 340.20406pt. | |
| 1658 | 1658 | |||
| Underfull \vbox (badness 10000) has occurred while \output is active [] | 1659 | 1659 | Underfull \vbox (badness 10000) has occurred while \output is active [] | |
| 1660 | 1660 | |||
| [56 <./Figures/Stacking1.png> <./Figures/SolRep.png>] [57 <./Figures/Automatic | 1661 | 1661 | [56 <./Figures/Stacking1.png> <./Figures/SolRep.png>] [57 <./Figures/Automatic | |
| S.png>] | 1662 | 1662 | S.png>] | |
| [58] | 1663 | 1663 | [58] | |
| <./Figures/Stacking2.png, id=1134, 743.77875pt x 414.54875pt> | 1664 | 1664 | <./Figures/Stacking2.png, id=1134, 743.77875pt x 414.54875pt> | |
| File: ./Figures/Stacking2.png Graphic file (type png) | 1665 | 1665 | File: ./Figures/Stacking2.png Graphic file (type png) | |
| <use ./Figures/Stacking2.png> | 1666 | 1666 | <use ./Figures/Stacking2.png> | |
| Package pdftex.def Info: ./Figures/Stacking2.png used on input line 191. | 1667 | 1667 | Package pdftex.def Info: ./Figures/Stacking2.png used on input line 191. | |
| (pdftex.def) Requested size: 427.43153pt x 238.23717pt. | 1668 | 1668 | (pdftex.def) Requested size: 427.43153pt x 238.23717pt. | |
| 1669 | 1669 | |||
| Underfull \hbox (badness 10000) in paragraph at lines 202--203 | 1670 | 1670 | Underfull \hbox (badness 10000) in paragraph at lines 202--203 | |
| 1671 | 1671 | |||
| [] | 1672 | 1672 | [] | |
| 1673 | 1673 | |||
| [59 <./Figures/Stacking2.png>] | 1674 | 1674 | [59 <./Figures/Stacking2.png>] | |
| <Figures/FW.png, id=1150, 456.70625pt x 342.27875pt> | 1675 | 1675 | <Figures/FW.png, id=1150, 456.70625pt x 342.27875pt> | |
| File: Figures/FW.png Graphic file (type png) | 1676 | 1676 | File: Figures/FW.png Graphic file (type png) | |
| <use Figures/FW.png> | 1677 | 1677 | <use Figures/FW.png> | |
| Package pdftex.def Info: Figures/FW.png used on input line 216. | 1678 | 1678 | Package pdftex.def Info: Figures/FW.png used on input line 216. | |
| (pdftex.def) Requested size: 427.43153pt x 320.34758pt. | 1679 | 1679 | (pdftex.def) Requested size: 427.43153pt x 320.34758pt. | |
| [60 <./Figures/FW.png>] [61] | 1680 | 1680 | [60 <./Figures/FW.png>] [61] | |
| <./Figures/boxplot.png, id=1171, 1994.45125pt x 959.585pt> | 1681 | 1681 | <./Figures/boxplot.png, id=1171, 1994.45125pt x 959.585pt> | |
| File: ./Figures/boxplot.png Graphic file (type png) | 1682 | 1682 | File: ./Figures/boxplot.png Graphic file (type png) | |
| <use ./Figures/boxplot.png> | 1683 | 1683 | <use ./Figures/boxplot.png> | |
| Package pdftex.def Info: ./Figures/boxplot.png used on input line 321. | 1684 | 1684 | Package pdftex.def Info: ./Figures/boxplot.png used on input line 321. | |
| (pdftex.def) Requested size: 427.43153pt x 205.64786pt. | 1685 | 1685 | (pdftex.def) Requested size: 427.43153pt x 205.64786pt. | |
| [62] | 1686 | 1686 | [62] | |
| Underfull \hbox (badness 10000) in paragraph at lines 340--341 | 1687 | 1687 | Underfull \hbox (badness 10000) in paragraph at lines 340--341 | |
| 1688 | 1688 | |||
| [] | 1689 | 1689 | [] | |
| 1690 | 1690 | |||
| 1691 | 1691 | |||
| Underfull \hbox (badness 2564) in paragraph at lines 342--342 | 1692 | 1692 | Underfull \hbox (badness 2564) in paragraph at lines 342--342 | |
| [][]\T1/phv/m/sc/14.4 ESCBR-SMA : In-tro-duc-tion des sys-tèmes multi- | 1693 | 1693 | [][]\T1/phv/m/sc/14.4 ESCBR-SMA : In-tro-duc-tion des sys-tèmes multi- | |
| [] | 1694 | 1694 | [] | |
| 1695 | 1695 | |||
| 1696 | 1696 | |||
| Overfull \hbox (5.60397pt too wide) has occurred while \output is active | 1697 | 1697 | Overfull \hbox (5.60397pt too wide) has occurred while \output is active | |
| \T1/phv/m/sl/10.95 6.3. ESCBR-SMA : INTRODUCTION DES SYSTÈMES MULTI-AGENTS DAN | 1698 | 1698 | \T1/phv/m/sl/10.95 6.3. ESCBR-SMA : INTRODUCTION DES SYSTÈMES MULTI-AGENTS DAN | |
| S ESCBR \T1/phv/m/n/10.95 63 | 1699 | 1699 | S ESCBR \T1/phv/m/n/10.95 63 | |
| [] | 1700 | 1700 | [] | |
| 1701 | 1701 | |||
| [63 <./Figures/boxplot.png>] | 1702 | 1702 | [63 <./Figures/boxplot.png>] | |
| <Figures/NCBR.png, id=1182, 653.44125pt x 445.665pt> | 1703 | 1703 | <Figures/NCBR.png, id=1182, 653.44125pt x 445.665pt> | |
| File: Figures/NCBR.png Graphic file (type png) | 1704 | 1704 | File: Figures/NCBR.png Graphic file (type png) | |
| <use Figures/NCBR.png> | 1705 | 1705 | <use Figures/NCBR.png> | |
| Package pdftex.def Info: Figures/NCBR.png used on input line 352. | 1706 | 1706 | Package pdftex.def Info: Figures/NCBR.png used on input line 352. | |
| (pdftex.def) Requested size: 427.43153pt x 291.5149pt. | 1707 | 1707 | (pdftex.def) Requested size: 427.43153pt x 291.5149pt. | |
| [64 <./Figures/NCBR.png>] | 1708 | 1708 | [64 <./Figures/NCBR.png>] | |
| <Figures/FlowCBR.png, id=1192, 450.68375pt x 822.07124pt> | 1709 | 1709 | <Figures/FlowCBR.png, id=1192, 450.68375pt x 822.07124pt> | |
| File: Figures/FlowCBR.png Graphic file (type png) | 1710 | 1710 | File: Figures/FlowCBR.png Graphic file (type png) | |
| <use Figures/FlowCBR.png> | 1711 | 1711 | <use Figures/FlowCBR.png> | |
| Package pdftex.def Info: Figures/FlowCBR.png used on input line 381. | 1712 | 1712 | Package pdftex.def Info: Figures/FlowCBR.png used on input line 381. | |
| (pdftex.def) Requested size: 270.41232pt x 493.24655pt. | 1713 | 1713 | (pdftex.def) Requested size: 270.41232pt x 493.24655pt. | |
| 1714 | 1714 | |||
| Underfull \hbox (badness 1107) in paragraph at lines 414--415 | 1715 | 1715 | Underfull \hbox (badness 1107) in paragraph at lines 414--415 | |
| []\T1/phv/m/n/10.95 Cette sec-tion pré-sente de ma-nière plus dé-taillée les co | 1716 | 1716 | []\T1/phv/m/n/10.95 Cette sec-tion pré-sente de ma-nière plus dé-taillée les co | |
| m-por-te-ments des agents | 1717 | 1717 | m-por-te-ments des agents | |
| [] | 1718 | 1718 | [] | |
| 1719 | 1719 | |||
| 1720 | 1720 | |||
| Overfull \hbox (5.60397pt too wide) has occurred while \output is active | 1721 | 1721 | Overfull \hbox (5.60397pt too wide) has occurred while \output is active | |
| \T1/phv/m/sl/10.95 6.3. ESCBR-SMA : INTRODUCTION DES SYSTÈMES MULTI-AGENTS DAN | 1722 | 1722 | \T1/phv/m/sl/10.95 6.3. ESCBR-SMA : INTRODUCTION DES SYSTÈMES MULTI-AGENTS DAN | |
| S ESCBR \T1/phv/m/n/10.95 65 | 1723 | 1723 | S ESCBR \T1/phv/m/n/10.95 65 | |
| [] | 1724 | 1724 | [] | |
| 1725 | 1725 | |||
| [65] | 1726 | 1726 | [65] | |
| Underfull \vbox (badness 10000) has occurred while \output is active [] | 1727 | 1727 | Underfull \vbox (badness 10000) has occurred while \output is active [] | |
| 1728 | 1728 | |||
| [66 <./Figures/FlowCBR.png>] | 1729 | 1729 | [66 <./Figures/FlowCBR.png>] | |
| <Figures/agent.png, id=1208, 352.31625pt x 402.50375pt> | 1730 | 1730 | <Figures/agent.png, id=1208, 352.31625pt x 402.50375pt> | |
| File: Figures/agent.png Graphic file (type png) | 1731 | 1731 | File: Figures/agent.png Graphic file (type png) | |
| <use Figures/agent.png> | 1732 | 1732 | <use Figures/agent.png> | |
| Package pdftex.def Info: Figures/agent.png used on input line 455. | 1733 | 1733 | Package pdftex.def Info: Figures/agent.png used on input line 455. | |
| (pdftex.def) Requested size: 246.61969pt x 281.7507pt. | 1734 | 1734 | (pdftex.def) Requested size: 246.61969pt x 281.7507pt. | |
| 1735 | 1735 | |||
| Overfull \hbox (5.60397pt too wide) has occurred while \output is active | 1736 | 1736 | Overfull \hbox (5.60397pt too wide) has occurred while \output is active | |
| \T1/phv/m/sl/10.95 6.3. ESCBR-SMA : INTRODUCTION DES SYSTÈMES MULTI-AGENTS DAN | 1737 | 1737 | \T1/phv/m/sl/10.95 6.3. ESCBR-SMA : INTRODUCTION DES SYSTÈMES MULTI-AGENTS DAN | |
| S ESCBR \T1/phv/m/n/10.95 67 | 1738 | 1738 | S ESCBR \T1/phv/m/n/10.95 67 | |
| [] | 1739 | 1739 | [] | |
| 1740 | 1740 | |||
| [67] | 1741 | 1741 | [67] | |
| <Figures/BayesianEvolution.png, id=1222, 626.34pt x 402.50375pt> | 1742 | 1742 | <Figures/BayesianEvolution.png, id=1222, 626.34pt x 402.50375pt> | |
| File: Figures/BayesianEvolution.png Graphic file (type png) | 1743 | 1743 | File: Figures/BayesianEvolution.png Graphic file (type png) | |
| <use Figures/BayesianEvolution.png> | 1744 | 1744 | <use Figures/BayesianEvolution.png> | |
| Package pdftex.def Info: Figures/BayesianEvolution.png used on input line 468. | 1745 | 1745 | Package pdftex.def Info: Figures/BayesianEvolution.png used on input line 468. | |
| 1746 | 1746 | |||
| (pdftex.def) Requested size: 313.16922pt x 201.25137pt. | 1747 | 1747 | (pdftex.def) Requested size: 313.16922pt x 201.25137pt. | |
| [68 <./Figures/agent.png>] | 1748 | 1748 | [68 <./Figures/agent.png>] | |
| Underfull \hbox (badness 10000) in paragraph at lines 509--509 | 1749 | 1749 | Underfull \hbox (badness 10000) in paragraph at lines 509--509 | |
| []|\T1/phv/m/n/8 Input. | 1750 | 1750 | []|\T1/phv/m/n/8 Input. | |
| [] | 1751 | 1751 | [] | |
| 1752 | 1752 | |||
| 1753 | 1753 | |||
| Underfull \hbox (badness 10000) in paragraph at lines 509--510 | 1754 | 1754 | Underfull \hbox (badness 10000) in paragraph at lines 509--510 | |
| []|\T1/phv/m/n/8 Output | 1755 | 1755 | []|\T1/phv/m/n/8 Output | |
| [] | 1756 | 1756 | [] | |
| 1757 | 1757 | |||
| <Figures/boxplot2.png, id=1237, 1615.03375pt x 835.12pt> | 1758 | 1758 | <Figures/boxplot2.png, id=1237, 1615.03375pt x 835.12pt> | |
| File: Figures/boxplot2.png Graphic file (type png) | 1759 | 1759 | File: Figures/boxplot2.png Graphic file (type png) | |
| <use Figures/boxplot2.png> | 1760 | 1760 | <use Figures/boxplot2.png> | |
| Package pdftex.def Info: Figures/boxplot2.png used on input line 619. | 1761 | 1761 | Package pdftex.def Info: Figures/boxplot2.png used on input line 619. | |
| (pdftex.def) Requested size: 427.43153pt x 221.01265pt. | 1762 | 1762 | (pdftex.def) Requested size: 427.43153pt x 221.01265pt. | |
| 1763 | 1763 | |||
| Overfull \hbox (5.60397pt too wide) has occurred while \output is active | 1764 | 1764 | Overfull \hbox (5.60397pt too wide) has occurred while \output is active | |
| \T1/phv/m/sl/10.95 6.3. ESCBR-SMA : INTRODUCTION DES SYSTÈMES MULTI-AGENTS DAN | 1765 | 1765 | \T1/phv/m/sl/10.95 6.3. ESCBR-SMA : INTRODUCTION DES SYSTÈMES MULTI-AGENTS DAN | |
| S ESCBR \T1/phv/m/n/10.95 69 | 1766 | 1766 | S ESCBR \T1/phv/m/n/10.95 69 | |
| [] | 1767 | 1767 | [] | |
| 1768 | 1768 | |||
| [69 <./Figures/BayesianEvolution.png>] | 1769 | 1769 | [69 <./Figures/BayesianEvolution.png>] | |
| Underfull \vbox (badness 10000) has occurred while \output is active [] | 1770 | 1770 | Underfull \vbox (badness 10000) has occurred while \output is active [] | |
| 1771 | 1771 | |||
| [70] | 1772 | 1772 | [70] | |
| Underfull \vbox (badness 10000) has occurred while \output is active [] | 1773 | 1773 | Underfull \vbox (badness 10000) has occurred while \output is active [] | |
| 1774 | 1774 | |||
| 1775 | 1775 | |||
| Overfull \hbox (5.60397pt too wide) has occurred while \output is active | 1776 | 1776 | Overfull \hbox (5.60397pt too wide) has occurred while \output is active | |
| \T1/phv/m/sl/10.95 6.3. ESCBR-SMA : INTRODUCTION DES SYSTÈMES MULTI-AGENTS DAN | 1777 | 1777 | \T1/phv/m/sl/10.95 6.3. ESCBR-SMA : INTRODUCTION DES SYSTÈMES MULTI-AGENTS DAN | |
| S ESCBR \T1/phv/m/n/10.95 71 | 1778 | 1778 | S ESCBR \T1/phv/m/n/10.95 71 | |
| [] | 1779 | 1779 | [] | |
| 1780 | 1780 | |||
| [71 <./Figures/boxplot2.png>]) [72] | 1781 | 1781 | [71 <./Figures/boxplot2.png>]) [72] | |
| \openout2 = `./chapters/TS.aux'. | 1782 | 1782 | \openout2 = `./chapters/TS.aux'. | |
| 1783 | 1783 | |||
| (./chapters/TS.tex | 1784 | 1784 | (./chapters/TS.tex | |
| Chapitre 7. | 1785 | 1785 | Chapitre 7. | |
| 1786 | 1786 | |||
| Underfull \vbox (badness 10000) has occurred while \output is active [] | 1787 | 1787 | Underfull \vbox (badness 10000) has occurred while \output is active [] | |
| 1788 | 1788 | |||
| [73 | 1789 | 1789 | [73 | |
| 1790 | 1790 | |||
| 1791 | 1791 | |||
| 1792 | 1792 | |||
| 1793 | 1793 | |||
| ] | 1794 | 1794 | ] | |
| Overfull \hbox (19.02232pt too wide) in paragraph at lines 33--59 | 1795 | 1795 | Overfull \hbox (19.02232pt too wide) in paragraph at lines 33--59 | 
main.pdf
View file @
cc9dda2
main.synctex.gz
View file @
cc9dda2