diff --git a/src/Assignments/A1/resources/Constants.java b/src/Assignments/A1/resources/Constants.java deleted file mode 100644 index ef20411..0000000 --- a/src/Assignments/A1/resources/Constants.java +++ /dev/null @@ -1,8 +0,0 @@ -package Assignments.A1.resources; - -public class Constants { - - /* Used to prevent DFS from going down only 1 branch */ - public static final int MAX_DEPTH = 100; - -} diff --git a/src/Assignments/A1/resources/Parameters.java b/src/Assignments/A1/resources/Parameters.java new file mode 100644 index 0000000..9930f73 --- /dev/null +++ b/src/Assignments/A1/resources/Parameters.java @@ -0,0 +1,14 @@ +package Assignments.A1.resources; + +/** + * Holds any constants needed. May be re-modified later to allow for configuration. + * + * @author Jonathan Turner + * @version Spring 2024 + */ +public class Parameters { + + /* Used to prevent DFS from going down only 1 branch */ + public static final int MAX_DEPTH = 40; // Max number of moves in 8-Puzzle's are 31 moves if solvable. + +}