cmsc433.p3
Class Main

java.lang.Object
  extended by cmsc433.p3.Main

public class Main
extends java.lang.Object

Main entry point for the program. Provides command-line support for generating random mazes and passing maze files to solvers.


Constructor Summary
Main()
           
 
Method Summary
static void main(java.lang.String[] args)
           
 void solve()
          Method that calls the solvers.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Main

public Main()
Method Detail

solve

public void solve()
Method that calls the solvers. To add your solver to the list of solvers that is run, add it to the "solvers" array defined at the top of this method.


main

public static void main(java.lang.String[] args)