| Interface | Description |
|---|---|
| Algorithm |
The Algorithm interface provides a starting point for any search algorithm to
be implemented, to allow for the testing and comparison of multiple
algorithms in this project.
|
| Class | Description |
|---|---|
| DFSAlgorithm |
The DFSAlgorithm class provides an implementation of the DFS / BB A*
algorithm in a sequential (non parallelized) manner.
|
| DFSParallel |
This is an entry point for the DFS parallelized version.
|
| DFSTask |
The DFS Task class provides a fork-join recursive action for the DFS / BB A*
algorithm
|