Removed output

This commit is contained in:
Malte Tammena 2017-10-24 21:23:00 +02:00
parent d75ac6e20d
commit ad9edad93f

View file

@ -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") &&