summaryrefslogtreecommitdiff
path: root/src/ch/epfl/maze/simulation
diff options
context:
space:
mode:
authorPacien TRAN-GIRARD2015-11-24 11:15:53 +0100
committerPacien TRAN-GIRARD2015-11-24 11:15:53 +0100
commitfb492341a1d05590c5230e8e0bd5e48f530944fe (patch)
tree1bd1e9a30239cf8f3415f1c2d1ef6df04dab91cc /src/ch/epfl/maze/simulation
parentbc477506342411e9156b3230d847cb92bcb8e5f9 (diff)
downloadmaze-solver-fb492341a1d05590c5230e8e0bd5e48f530944fe.tar.gz
Properly set class authors
Diffstat (limited to 'src/ch/epfl/maze/simulation')
-rw-r--r--src/ch/epfl/maze/simulation/DaedalusSimulation.java2
-rw-r--r--src/ch/epfl/maze/simulation/MazeSimulation.java2
-rw-r--r--src/ch/epfl/maze/simulation/Simulation.java2
3 files changed, 6 insertions, 0 deletions
diff --git a/src/ch/epfl/maze/simulation/DaedalusSimulation.java b/src/ch/epfl/maze/simulation/DaedalusSimulation.java
index 90ff4a7..3a8bf64 100644
--- a/src/ch/epfl/maze/simulation/DaedalusSimulation.java
+++ b/src/ch/epfl/maze/simulation/DaedalusSimulation.java
@@ -12,6 +12,8 @@ import java.util.*;
12 * Simulation of a predation environment. Handles the next moves of every 12 * Simulation of a predation environment. Handles the next moves of every
13 * predator and prey in a Daedalus, as well as the animation by notifying 13 * predator and prey in a Daedalus, as well as the animation by notifying
14 * changes to it. The simulation finishes when every prey has been caught. 14 * changes to it. The simulation finishes when every prey has been caught.
15 *
16 * @author EPFL
15 */ 17 */
16public final class DaedalusSimulation implements Simulation { 18public final class DaedalusSimulation implements Simulation {
17 19
diff --git a/src/ch/epfl/maze/simulation/MazeSimulation.java b/src/ch/epfl/maze/simulation/MazeSimulation.java
index 2108f54..0288353 100644
--- a/src/ch/epfl/maze/simulation/MazeSimulation.java
+++ b/src/ch/epfl/maze/simulation/MazeSimulation.java
@@ -17,6 +17,8 @@ import java.util.TreeMap;
17 * Simulation of a maze solver. Handles the next move of each animal, as well as 17 * Simulation of a maze solver. Handles the next move of each animal, as well as
18 * the animation by notifying the changes to it. The simulation finishes when 18 * the animation by notifying the changes to it. The simulation finishes when
19 * every animal has found the exit. 19 * every animal has found the exit.
20 *
21 * @author EPFL
20 */ 22 */
21public final class MazeSimulation implements Simulation { 23public final class MazeSimulation implements Simulation {
22 24
diff --git a/src/ch/epfl/maze/simulation/Simulation.java b/src/ch/epfl/maze/simulation/Simulation.java
index d373d2f..1c3bf51 100644
--- a/src/ch/epfl/maze/simulation/Simulation.java
+++ b/src/ch/epfl/maze/simulation/Simulation.java
@@ -10,6 +10,8 @@ import java.util.Map;
10/** 10/**
11 * The {@code Simulation} interface defines a set of rules that must be 11 * The {@code Simulation} interface defines a set of rules that must be
12 * fulfilled in order to be displayed. 12 * fulfilled in order to be displayed.
13 *
14 * @author EPFL
13 */ 15 */
14public interface Simulation { 16public interface Simulation {
15 17