draft report
This commit is contained in:
parent
621c0934f2
commit
2ef097323a
2 changed files with 48 additions and 0 deletions
1
TP1/Rapport/.gitignore
vendored
Normal file
1
TP1/Rapport/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
!*.tex
|
47
TP1/Rapport/rapport.tex
Normal file
47
TP1/Rapport/rapport.tex
Normal file
|
@ -0,0 +1,47 @@
|
|||
\documentclass{article}
|
||||
|
||||
|
||||
\usepackage[T1]{fontenc} % encodage
|
||||
\renewcommand{\familydefault}{\sfdefault} % police en sans-serif
|
||||
|
||||
\usepackage[french]{babel} % langue
|
||||
\frenchsetup{SmallCapsFigTabCaptions=false}
|
||||
|
||||
\usepackage[hidelinks]{hyperref} % liens cliquable dans la table des matières
|
||||
|
||||
\usepackage{graphicx} % images
|
||||
\usepackage{caption}
|
||||
|
||||
\usepackage[a4paper, left=20mm, top=20mm]{geometry} % dimensions de la page
|
||||
|
||||
\usepackage{minted} % intégration code
|
||||
\usemintedstyle{emacs}
|
||||
|
||||
\title{\textbf{TP1 - Sokoban}}
|
||||
\author{César PICHON, Florian POSEZ, Omar ANOUAR, Anri KENNEL\\
|
||||
\\Intelligence artificielle pour les jeux $\cdot$ Université Paris 8}
|
||||
|
||||
\date{Année universitaire 2022-2023}
|
||||
|
||||
\begin{document}
|
||||
\maketitle
|
||||
\tableofcontents
|
||||
\clearpage
|
||||
|
||||
\section{Alogorithme}
|
||||
TODO
|
||||
|
||||
\section{Précalculs}
|
||||
TODO
|
||||
|
||||
\section{Problèmes}
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\begin{tabular}{c|c|c|c}
|
||||
Nombre max caisses déplacées & Solution & Temps calcul & Temps précalculs \\
|
||||
\hline
|
||||
TODO & TODO & TODO & TODO \\
|
||||
\end{tabular}
|
||||
\end{figure}
|
||||
|
||||
\end{document}
|
Reference in a new issue