From ad9edad93f81ff047e1b9e3da64c45d099bfd162 Mon Sep 17 00:00:00 2001 From: Malte Tammena Date: Tue, 24 Oct 2017 21:23:00 +0200 Subject: [PATCH] Removed output --- src/player/malte/MalteAI.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/player/malte/MalteAI.java b/src/player/malte/MalteAI.java index 697d9ad..e5a7141 100644 --- a/src/player/malte/MalteAI.java +++ b/src/player/malte/MalteAI.java @@ -64,7 +64,6 @@ public class MalteAI implements Player{ for (double d: weights) { max = max > d ? max: d; } - System.out.println(Arrays.toString(weights)); for (int i = 0; i < weights.length; i++) { if (Math.abs(max - weights[i]) < 0.000001) { return i; @@ -140,7 +139,6 @@ public class MalteAI implements Player{ if (x.matches("MMM") || y.matches("MMM")) { weight *= W_PRIORITY_1; - System.out.println("1 USED"); } else if ((x.matches("M") && y.matches("MM")) || (x.matches("MM") &&