//Scott Blauert
//CS475

Compiling:

Compile by typing: g++ hw3.cpp


Running:

./a.out followed by command line options:

-s #: Selects the search type. 1 is breadth-first search, 2 is depth-first search
-i #: Selects initial node.
-g #: Selects goal node.

For example:

./a.out -s 1 -i 3 -g 6

will run breadth-first search with initial node 3 and goal node 6 corresponding to hard-coded nodes and edges in source file.