Commit eddee004 authored by LAIRD Timothy's avatar LAIRD Timothy

Test

parent 76f4b595
This diff is collapsed.
build.xml.data.CRC32=662cc432
build.xml.script.CRC32=54ced37f
build.xml.stylesheet.CRC32=8064a381@1.80.1.48
build.xml.stylesheet.CRC32=f85dc8f2@1.93.0.48
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
nbproject/build-impl.xml.data.CRC32=662cc432
nbproject/build-impl.xml.script.CRC32=823cde1a
nbproject/build-impl.xml.stylesheet.CRC32=830a3534@1.80.1.48
nbproject/build-impl.xml.script.CRC32=fe7dced2
nbproject/build-impl.xml.stylesheet.CRC32=f89f7d21@1.93.0.48
......@@ -3,4 +3,4 @@ do.depend=false
do.jar=true
javac.debug=true
javadoc.preview=true
user.properties.file=C:\\Users\\franck.tempet\\AppData\\Roaming\\NetBeans\\8.2\\build.properties
user.properties.file=C:\\Users\\timot\\AppData\\Roaming\\NetBeans\\11.2\\build.properties
......@@ -4,22 +4,18 @@
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
<group>
<file>file:/C:/Users/franck.tempet/Documents/NetBeansProjects/TicTacToeCodingame/src/tictactoecodingame/JoueurHumain.java</file>
<file>file:/C:/Users/franck.tempet/Documents/NetBeansProjects/TicTacToeCodingame/src/tictactoecodingame/AlgoSelection.java</file>
<file>file:/C:/Users/franck.tempet/Documents/NetBeansProjects/TicTacToeCodingame/src/tictactoecodingame/CoupTicTacToe9x9.java</file>
<file>file:/C:/Users/franck.tempet/Documents/NetBeansProjects/TicTacToeCodingame/src/tictactoecodingame/Piece.java</file>
<file>file:/C:/Users/franck.tempet/Documents/NetBeansProjects/TicTacToeCodingame/src/tictactoecodingame/AlgoRecherche.java</file>
<file>file:/C:/Users/franck.tempet/Documents/NetBeansProjects/TicTacToeCodingame/src/tictactoecodingame/Jeton.java</file>
<file>file:/C:/Users/franck.tempet/Documents/NetBeansProjects/TicTacToeCodingame/src/tictactoecodingame/Player.java</file>
<file>file:/C:/Users/franck.tempet/Documents/NetBeansProjects/TicTacToeCodingame/src/tictactoecodingame/Plateau.java</file>
<file>file:/C:/Users/franck.tempet/Documents/NetBeansProjects/TicTacToeCodingame/src/tictactoecodingame/Noeud.java</file>
<file>file:/C:/Users/franck.tempet/Documents/NetBeansProjects/TicTacToeCodingame/src/tictactoecodingame/Arbitre.java</file>
<file>file:/C:/Users/franck.tempet/Documents/NetBeansProjects/TicTacToeCodingame/src/tictactoecodingame/AlgoUCB.java</file>
<file>file:/C:/Users/franck.tempet/Documents/NetBeansProjects/TicTacToeCodingame/src/tictactoecodingame/AlgoRechercheAleatoire.java</file>
<file>file:/C:/Users/franck.tempet/Documents/NetBeansProjects/TicTacToeCodingame/src/tictactoecodingame/Coup.java</file>
<file>file:/C:/Users/franck.tempet/Documents/NetBeansProjects/TicTacToeCodingame/src/tictactoecodingame/JoueurOrdi.java</file>
<file>file:/C:/Users/franck.tempet/Documents/NetBeansProjects/TicTacToeCodingame/src/tictactoecodingame/Joueur.java</file>
<file>file:/C:/Users/franck.tempet/Documents/NetBeansProjects/TicTacToeCodingame/src/tictactoecodingame/Case.java</file>
<file>file:/C:/Users/franck.tempet/Documents/NetBeansProjects/TicTacToeCodingame/src/tictactoecodingame/MonteCarlo.java</file>
<file>file:/C:/Users/franck.tempet/Documents/NetBeansProjects/TicTacToeCodingame/src/tictactoecodingame/GrilleTicTacToe9x9.java</file>
</group>
</open-files>
......
......@@ -19,8 +19,12 @@ build.test.results.dir=${build.dir}/test/results
#debug.transport=dt_socket
debug.classpath=\
${run.classpath}
debug.modulepath=\
${run.modulepath}
debug.test.classpath=\
${run.test.classpath}
debug.test.modulepath=\
${run.test.modulepath}
# Files in build.classes.dir which should be excluded from distribution jar
dist.archive.excludes=
# This directory is removed when the project is cleaned:
......@@ -36,6 +40,8 @@ javac.classpath=
javac.compilerargs=
javac.deprecation=false
javac.external.vm=true
javac.modulepath=
javac.processormodulepath=
javac.processorpath=\
${javac.classpath}
javac.source=1.8
......@@ -43,6 +49,8 @@ javac.target=1.8
javac.test.classpath=\
${javac.classpath}:\
${build.classes.dir}
javac.test.modulepath=\
${javac.modulepath}
javac.test.processorpath=\
${javac.test.classpath}
javadoc.additionalparam=
......@@ -68,9 +76,13 @@ run.classpath=\
# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value.
# To set system properties for unit tests define test-sys-prop.name=value:
run.jvmargs=
run.modulepath=\
${javac.modulepath}
run.test.classpath=\
${javac.test.classpath}:\
${build.test.classes.dir}
run.test.modulepath=\
${javac.test.modulepath}
source.encoding=UTF-8
src.dir=src
test.src.dir=test
......@@ -19,17 +19,16 @@ public class Player {
// Remplacer ici l'algorithme aléatoire par votre algorithme.
// Créer une nouvelle classe qui hérite de la class AlgoRecherche
AlgoRechercheAleatoire alea = new AlgoRechercheAleatoire( ); // L'ordinateur joue au hasard
joueurOrdi.setAlgoRecherche(alea);
joueurOrdi.setAlgoRecherche(alea);
GrilleTicTacToe3x3 grille = new GrilleTicTacToe3x3();
Arbitre a = new Arbitre(grille, joueurOrdi , humain);
Arbitre a = new Arbitre(grille, joueurOrdi , humain );
a.startNewGame(true); // Demarre une partie en affichant la grille du jeu
// Pour lancer un tournooi de 100 parties en affichant la grille du jeu
// a.startTournament(300 , false);
//a.startTournament(1000 , false);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment