From 7a260220102549933252914d891d30a32e8a40f6 Mon Sep 17 00:00:00 2001 From: Antonin Boyon <22009544@etu.unicaen.fr> Date: Wed, 10 Feb 2021 10:43:39 +0100 Subject: [PATCH] =?UTF-8?q?m=C3=A9thode=20de=20clonage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/othello/State.java | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/src/othello/State.java b/src/othello/State.java index d2e4f8b..81a029e 100644 --- a/src/othello/State.java +++ b/src/othello/State.java @@ -36,25 +36,12 @@ public class State { // Recherche autour du pion du joueur courant for (int k=-1; k<2;k++) { for (int l=-1; l<2; l++) { -<<<<<<< HEAD // La position du pion trouvé est exclue if (k!=0 || l!=0) { // Si une place libre est trouvée elle est ajoutée à la liste de coups if ( ((i+k >= 0) && (i+k < 7 )) && ((j+l >= 0) && (j+l < 7 )) && (this.board[i+k][j+l]==0)) { -======= -<<<<<<< HEAD - if (k!=0 || l!=0) { -======= - // La position du pion trouv� est exclue - if (k!=0 || l!=0) { - // Si une place libre est trouv�e elle est ajout� � la liste de coups - System.out.println("close"); - if ( (this.board[i+k][j+l]==0) && (i+k >= 0) && (i+k < 7 ) && (j+l >= 0) && (j+l < 7 ) ) { - System.out.println("jadd"); ->>>>>>> 2263d0614b420497f888985e269e89cd19670bab ->>>>>>> a28cb1daa55fe0e031900c11927481008e642a1b moves.add(new Point(i+k, j+l)); - + } } } }