mirror of
https://github.com/2OOP/pism.git
synced 2026-02-05 03:14:50 +00:00
Removed souts for debugging
This commit is contained in:
@@ -34,7 +34,6 @@ public abstract class BitboardGame<T extends BitboardGame<T>> implements TurnBas
|
||||
j++;
|
||||
}
|
||||
}
|
||||
System.out.println(Arrays.toString(output));
|
||||
return output;
|
||||
}
|
||||
|
||||
@@ -91,7 +90,6 @@ public abstract class BitboardGame<T extends BitboardGame<T>> implements TurnBas
|
||||
public Player<T> getPlayer(int index) {return players[index];}
|
||||
|
||||
public int getCurrentPlayerIndex() {
|
||||
System.out.println(currentTurn % playerBitboard.length);
|
||||
return currentTurn % playerBitboard.length;
|
||||
}
|
||||
|
||||
@@ -104,7 +102,6 @@ public abstract class BitboardGame<T extends BitboardGame<T>> implements TurnBas
|
||||
}
|
||||
|
||||
public void nextTurn() {
|
||||
System.out.println("Incrementing turn");
|
||||
currentTurn++;
|
||||
}
|
||||
}
|
||||
@@ -77,8 +77,6 @@ public class BitboardReversi extends BitboardGame<BitboardReversi> {
|
||||
|
||||
@Override
|
||||
public int[] getLegalMoves(){
|
||||
System.out.println(Arrays.toString(translateLegalMoves(getLegalMoves2())));
|
||||
System.out.println(Long.toBinaryString(getLegalMoves2()));
|
||||
return translateLegalMoves(getLegalMoves2());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user