From fb492341a1d05590c5230e8e0bd5e48f530944fe Mon Sep 17 00:00:00 2001 From: Pacien TRAN-GIRARD Date: Tue, 24 Nov 2015 11:15:53 +0100 Subject: Properly set class authors --- src/ch/epfl/maze/physical/zoo/Bear.java | 1 + src/ch/epfl/maze/physical/zoo/Hamster.java | 1 + src/ch/epfl/maze/physical/zoo/Monkey.java | 1 + src/ch/epfl/maze/physical/zoo/Mouse.java | 1 + src/ch/epfl/maze/physical/zoo/Panda.java | 1 + src/ch/epfl/maze/physical/zoo/SpaceInvader.java | 1 + 6 files changed, 6 insertions(+) (limited to 'src/ch/epfl/maze/physical/zoo') 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; /** * Bear A.I. that implements the Pledge Algorithm. * + * @author EPFL * @author Pacien TRAN-GIRARD */ 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; * Hamster A.I. that remembers the previous choice it has made and the dead ends * it has already met. * + * @author EPFL * @author Pacien TRAN-GIRARD */ 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; /** * Monkey A.I. that puts its hand on the left wall and follows it. * + * @author EPFL * @author Pacien TRAN-GIRARD */ 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; /** * Mouse A.I. that remembers only the previous choice it has made. * + * @author EPFL * @author Pacien TRAN-GIRARD */ 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; /** * Panda A.I. that implements Trémeaux's Algorithm. * + * @author EPFL * @author Pacien TRAN-GIRARD */ 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; * The way we measure efficiency is made by the test case {@code Competition}. * * @see ch.epfl.maze.tests.Competition Competition + * @author EPFL */ public class SpaceInvader extends Animal { -- cgit v1.2.3