diff options
Diffstat (limited to 'src/ch/epfl/maze/physical/zoo')
-rw-r--r-- | src/ch/epfl/maze/physical/zoo/Bear.java | 1 | ||||
-rw-r--r-- | src/ch/epfl/maze/physical/zoo/Hamster.java | 1 | ||||
-rw-r--r-- | src/ch/epfl/maze/physical/zoo/Monkey.java | 1 | ||||
-rw-r--r-- | src/ch/epfl/maze/physical/zoo/Mouse.java | 1 | ||||
-rw-r--r-- | src/ch/epfl/maze/physical/zoo/Panda.java | 1 | ||||
-rw-r--r-- | src/ch/epfl/maze/physical/zoo/SpaceInvader.java | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/src/ch/epfl/maze/physical/zoo/Bear.java b/src/ch/epfl/maze/physical/zoo/Bear.java index 2ef9215..803b574 100644 --- a/src/ch/epfl/maze/physical/zoo/Bear.java +++ b/src/ch/epfl/maze/physical/zoo/Bear.java | |||
@@ -11,6 +11,7 @@ import java.util.List; | |||
11 | /** | 11 | /** |
12 | * Bear A.I. that implements the Pledge Algorithm. | 12 | * Bear A.I. that implements the Pledge Algorithm. |
13 | * | 13 | * |
14 | * @author EPFL | ||
14 | * @author Pacien TRAN-GIRARD | 15 | * @author Pacien TRAN-GIRARD |
15 | */ | 16 | */ |
16 | public class Bear extends Animal { | 17 | public class Bear extends Animal { |
diff --git a/src/ch/epfl/maze/physical/zoo/Hamster.java b/src/ch/epfl/maze/physical/zoo/Hamster.java index 7fa0b0d..150880c 100644 --- a/src/ch/epfl/maze/physical/zoo/Hamster.java +++ b/src/ch/epfl/maze/physical/zoo/Hamster.java | |||
@@ -14,6 +14,7 @@ import java.util.stream.Collectors; | |||
14 | * Hamster A.I. that remembers the previous choice it has made and the dead ends | 14 | * Hamster A.I. that remembers the previous choice it has made and the dead ends |
15 | * it has already met. | 15 | * it has already met. |
16 | * | 16 | * |
17 | * @author EPFL | ||
17 | * @author Pacien TRAN-GIRARD | 18 | * @author Pacien TRAN-GIRARD |
18 | */ | 19 | */ |
19 | public class Hamster extends ProbabilisticAnimal { | 20 | public class Hamster extends ProbabilisticAnimal { |
diff --git a/src/ch/epfl/maze/physical/zoo/Monkey.java b/src/ch/epfl/maze/physical/zoo/Monkey.java index 196b028..119781c 100644 --- a/src/ch/epfl/maze/physical/zoo/Monkey.java +++ b/src/ch/epfl/maze/physical/zoo/Monkey.java | |||
@@ -11,6 +11,7 @@ import java.util.List; | |||
11 | /** | 11 | /** |
12 | * Monkey A.I. that puts its hand on the left wall and follows it. | 12 | * Monkey A.I. that puts its hand on the left wall and follows it. |
13 | * | 13 | * |
14 | * @author EPFL | ||
14 | * @author Pacien TRAN-GIRARD | 15 | * @author Pacien TRAN-GIRARD |
15 | */ | 16 | */ |
16 | public class Monkey extends Animal { | 17 | public class Monkey extends Animal { |
diff --git a/src/ch/epfl/maze/physical/zoo/Mouse.java b/src/ch/epfl/maze/physical/zoo/Mouse.java index 08d7f3d..f7084d7 100644 --- a/src/ch/epfl/maze/physical/zoo/Mouse.java +++ b/src/ch/epfl/maze/physical/zoo/Mouse.java | |||
@@ -7,6 +7,7 @@ import ch.epfl.maze.util.Vector2D; | |||
7 | /** | 7 | /** |
8 | * Mouse A.I. that remembers only the previous choice it has made. | 8 | * Mouse A.I. that remembers only the previous choice it has made. |
9 | * | 9 | * |
10 | * @author EPFL | ||
10 | * @author Pacien TRAN-GIRARD | 11 | * @author Pacien TRAN-GIRARD |
11 | */ | 12 | */ |
12 | public class Mouse extends ProbabilisticAnimal { | 13 | public class Mouse extends ProbabilisticAnimal { |
diff --git a/src/ch/epfl/maze/physical/zoo/Panda.java b/src/ch/epfl/maze/physical/zoo/Panda.java index aa35efe..b794d10 100644 --- a/src/ch/epfl/maze/physical/zoo/Panda.java +++ b/src/ch/epfl/maze/physical/zoo/Panda.java | |||
@@ -13,6 +13,7 @@ import java.util.stream.Collectors; | |||
13 | /** | 13 | /** |
14 | * Panda A.I. that implements Trémeaux's Algorithm. | 14 | * Panda A.I. that implements Trémeaux's Algorithm. |
15 | * | 15 | * |
16 | * @author EPFL | ||
16 | * @author Pacien TRAN-GIRARD | 17 | * @author Pacien TRAN-GIRARD |
17 | */ | 18 | */ |
18 | public class Panda extends ProbabilisticAnimal { | 19 | public class Panda extends ProbabilisticAnimal { |
diff --git a/src/ch/epfl/maze/physical/zoo/SpaceInvader.java b/src/ch/epfl/maze/physical/zoo/SpaceInvader.java index d03d280..3fd0513 100644 --- a/src/ch/epfl/maze/physical/zoo/SpaceInvader.java +++ b/src/ch/epfl/maze/physical/zoo/SpaceInvader.java | |||
@@ -17,6 +17,7 @@ import ch.epfl.maze.util.Vector2D; | |||
17 | * The way we measure efficiency is made by the test case {@code Competition}. | 17 | * The way we measure efficiency is made by the test case {@code Competition}. |
18 | * | 18 | * |
19 | * @see ch.epfl.maze.tests.Competition Competition | 19 | * @see ch.epfl.maze.tests.Competition Competition |
20 | * @author EPFL | ||
20 | */ | 21 | */ |
21 | public class SpaceInvader extends Animal { | 22 | public class SpaceInvader extends Animal { |
22 | 23 | ||