15 lines
378 B
Java
15 lines
378 B
Java
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 = 31; // Max number of moves in 8-Puzzle's are 31 moves if solvable.
|
|
|
|
}
|