From 4d8c2a10e8d0c931ed2f6bfa613b7d16ce9df9e2 Mon Sep 17 00:00:00 2001
From: Adrien Gaste <adrien.gaste@insa-rennes.fr>
Date: Tue, 17 May 2016 17:37:28 +0200
Subject: [PATCH] Ajout Presentation Soutenance

---
 .gitignore                                    |  2 +
 LaTex/Soutenance/Plan                         | 27 ++++++
 .../Rapport_en_LaTeX/Soutenance.tex           | 89 +++++++++++++++++++
 3 files changed, 118 insertions(+)
 create mode 100644 LaTex/Soutenance/Plan
 create mode 100644 LaTex/Soutenance/Rapport_en_LaTeX/Soutenance.tex

diff --git a/.gitignore b/.gitignore
index c92ce4a..eb2abe7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -18,3 +18,5 @@ GUI/GUI.iml
 *.dvi
 *.bbl
 *.blg
+*.nav
+*.snm
diff --git a/LaTex/Soutenance/Plan b/LaTex/Soutenance/Plan
new file mode 100644
index 0000000..227189f
--- /dev/null
+++ b/LaTex/Soutenance/Plan
@@ -0,0 +1,27 @@
+1. Résumé de la soutenance de janvier - 5 min
+	1.1 Notre Projet (1 diapo) 
+	1.2 Le Jeu du Pingouin (1 diapo)
+	1.3 Objectifs (1 diapo)
+	1.4 MCTS (1-2 diapos)
+	1.5 Tic-Tac-Toe (1 diapo)
+	
+2. Implémentation du MCTS pour le Jeu du Pingouin - 5 min
+	2.1 Le Plateau 
+		Image expliquant le déplacement
+		Bitboard des trous
+	2.2 Les Pingouins
+		Structure
+			Bitboard coups possibles dans une directions des 8 pingouins => Difficulté de manipulation des données
+			--> 1 bitboard = 1 pingouin avec toutes les données nécessaires
+		Déplacement des pingouins
+	--> fusion des positions + Bitboard des trous = Bitboard des obstacles, mis à jour dynamiquement
+	
+3. Interface graphique - 5 min
+	3.1 Intéraction MVC
+	3.2 JSON / Communication entre C++ et Java
+	
+4. Let's get ready to rumble ! - 5 min
+
+5. Pingu Garcia
+	
+	
diff --git a/LaTex/Soutenance/Rapport_en_LaTeX/Soutenance.tex b/LaTex/Soutenance/Rapport_en_LaTeX/Soutenance.tex
new file mode 100644
index 0000000..78dea33
--- /dev/null
+++ b/LaTex/Soutenance/Rapport_en_LaTeX/Soutenance.tex
@@ -0,0 +1,89 @@
+\documentclass[11pt]{beamer}
+
+
+\usetheme{Darmstadt}
+\usepackage[utf8]{inputenc}
+%\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+
+\author{Francesco BARIATTI \and Adrien GASTÉ \and Mikael LE \and Romain LEBOUC}
+\title{Étude Pratique : Développement d’une
+Intelligence Artificielle à base de l’algorithme
+Monte Carlo Tree Search}
+
+
+%\setbeamercovered{transparent} 
+%\setbeamertemplate{navigation symbols}{} 
+%\logo{} 
+
+\institute{Encadrant : Pascal GARCIA} 
+\date{Année scolaire 2015/16} 
+%\subject{} \\
+
+
+\AtBeginSection[]
+{
+  \begin{frame}
+    \frametitle{Table of Contents}
+    \tableofcontents[currentsection]
+  \end{frame}
+}
+
+
+\begin{document}
+
+
+\begin{frame}
+\titlepage
+\end{frame}
+
+%\begin{frame}
+%\tableofcontents
+%\end{frame}
+
+\section{Introduction}
+\subsection{Notre projet}
+\begin{frame}
+Bwahhahahahaha
+\end{frame}
+
+\subsection{Le Jeu du Pingouin}
+\begin{frame}
+huhu
+\end{frame}
+
+\subsection{Objectifs}
+\begin{frame}
+huhu
+\end{frame}
+
+\section{Prise en main du MCTS}
+\subsection{le Monte Carlo Tree Search}
+\begin{frame}
+
+\end{frame}
+
+\subsection{Le Tic-Tac-Toe}
+\begin{frame}
+huhu
+\end{frame}
+
+
+\section{Implémentation du MCTS pour le Jeu du Pingouin}
+\begin{frame}
+huhu
+\end{frame}
+
+\section{Interface graphique}
+\begin{frame}
+
+\end{frame}
+
+\section{Let's get ready to rumble !}
+\begin{frame}
+
+\end{frame}
+
+
+\end{document}
\ No newline at end of file
-- 
GitLab