diff options
Diffstat (limited to 'src/de/fhswf/in/inf/java1/aufgabe7/Simulation.java')
| -rw-r--r-- | src/de/fhswf/in/inf/java1/aufgabe7/Simulation.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/de/fhswf/in/inf/java1/aufgabe7/Simulation.java b/src/de/fhswf/in/inf/java1/aufgabe7/Simulation.java index 1b42f69..71e23a0 100644 --- a/src/de/fhswf/in/inf/java1/aufgabe7/Simulation.java +++ b/src/de/fhswf/in/inf/java1/aufgabe7/Simulation.java @@ -27,7 +27,7 @@ public final class Simulation * * @param anzahl * How often the game will be run. - * @return Gewonnene Spiele. + * @return Victory count */ private static int nDurchlaufeAusfuehren(Spiel spiel, Spieler spieler, int anzahl) @@ -65,8 +65,8 @@ public final class Simulation public static void main(String[] args) { - Spieler[] spieler = { new GleichSpieler(), new WechselSpieler(), - new ZufallsSpieler(0.5) }; + Spieler[] spieler = {new GleichSpieler(), new WechselSpieler(), + new ZufallsSpieler(0.5)}; Spiel spiel = new Spiel(); |
