diff options
Diffstat (limited to 'src/ch/epfl/maze/util')
-rw-r--r-- | src/ch/epfl/maze/util/Action.java | 2 | ||||
-rw-r--r-- | src/ch/epfl/maze/util/Direction.java | 1 | ||||
-rw-r--r-- | src/ch/epfl/maze/util/LabyrinthGenerator.java | 2 | ||||
-rw-r--r-- | src/ch/epfl/maze/util/Statistics.java | 2 | ||||
-rw-r--r-- | src/ch/epfl/maze/util/Vector2D.java | 3 |
5 files changed, 10 insertions, 0 deletions
diff --git a/src/ch/epfl/maze/util/Action.java b/src/ch/epfl/maze/util/Action.java index 069f135..6634293 100644 --- a/src/ch/epfl/maze/util/Action.java +++ b/src/ch/epfl/maze/util/Action.java | |||
@@ -4,6 +4,8 @@ package ch.epfl.maze.util; | |||
4 | * Immutable action that encapsulates a choice made by an animal and information | 4 | * Immutable action that encapsulates a choice made by an animal and information |
5 | * about it, such as if it was successful or not, and if the animal will die | 5 | * about it, such as if it was successful or not, and if the animal will die |
6 | * <i>while</i> performing it. | 6 | * <i>while</i> performing it. |
7 | * | ||
8 | * @author EPFL | ||
7 | */ | 9 | */ |
8 | public final class Action { | 10 | public final class Action { |
9 | 11 | ||
diff --git a/src/ch/epfl/maze/util/Direction.java b/src/ch/epfl/maze/util/Direction.java index d2ee4e7..ac172cb 100644 --- a/src/ch/epfl/maze/util/Direction.java +++ b/src/ch/epfl/maze/util/Direction.java | |||
@@ -5,6 +5,7 @@ package ch.epfl.maze.util; | |||
5 | * points ({@code DOWN, UP, RIGHT, LEFT}) from the frame of reference of the | 5 | * points ({@code DOWN, UP, RIGHT, LEFT}) from the frame of reference of the |
6 | * labyrinth, plus a default one : {@code NONE}. | 6 | * labyrinth, plus a default one : {@code NONE}. |
7 | * | 7 | * |
8 | * @author EPFL | ||
8 | * @author Pacien TRAN-GIRARD | 9 | * @author Pacien TRAN-GIRARD |
9 | */ | 10 | */ |
10 | public enum Direction { | 11 | public enum Direction { |
diff --git a/src/ch/epfl/maze/util/LabyrinthGenerator.java b/src/ch/epfl/maze/util/LabyrinthGenerator.java index 9e47c25..f753173 100644 --- a/src/ch/epfl/maze/util/LabyrinthGenerator.java +++ b/src/ch/epfl/maze/util/LabyrinthGenerator.java | |||
@@ -9,6 +9,8 @@ import java.util.regex.Pattern; | |||
9 | 9 | ||
10 | /** | 10 | /** |
11 | * Generates a set of pre-computed labyrinth structures | 11 | * Generates a set of pre-computed labyrinth structures |
12 | * | ||
13 | * @author EPFL | ||
12 | */ | 14 | */ |
13 | public final class LabyrinthGenerator { | 15 | public final class LabyrinthGenerator { |
14 | 16 | ||
diff --git a/src/ch/epfl/maze/util/Statistics.java b/src/ch/epfl/maze/util/Statistics.java index 3928859..b7e4d86 100644 --- a/src/ch/epfl/maze/util/Statistics.java +++ b/src/ch/epfl/maze/util/Statistics.java | |||
@@ -7,6 +7,8 @@ import java.util.*; | |||
7 | 7 | ||
8 | /** | 8 | /** |
9 | * Utility class that allows to compute statistics on a list of results. | 9 | * Utility class that allows to compute statistics on a list of results. |
10 | * | ||
11 | * @author EPFL | ||
10 | */ | 12 | */ |
11 | public final class Statistics { | 13 | public final class Statistics { |
12 | 14 | ||
diff --git a/src/ch/epfl/maze/util/Vector2D.java b/src/ch/epfl/maze/util/Vector2D.java index 52e1e55..2c0a911 100644 --- a/src/ch/epfl/maze/util/Vector2D.java +++ b/src/ch/epfl/maze/util/Vector2D.java | |||
@@ -2,6 +2,9 @@ package ch.epfl.maze.util; | |||
2 | 2 | ||
3 | /** | 3 | /** |
4 | * Immutable 2-dimensional vector (<i>x</i>, <i>y</i>). | 4 | * Immutable 2-dimensional vector (<i>x</i>, <i>y</i>). |
5 | * | ||
6 | * @author EPFL | ||
7 | * @author Pacien TRAN-GIRARD | ||
5 | */ | 8 | */ |
6 | public final class Vector2D { | 9 | public final class Vector2D { |
7 | 10 | ||