Uses of Interface
cmsc433.p3.Solution

Uses of Solution in cmsc433.p3
 

Classes in cmsc433.p3 that implement Solution
 class STSolution
          The STSolution class is a non-thread-safe implementation of the Solution interface.
 

Methods in cmsc433.p3 that return Solution
static Solution GridSolver.solve(Grid board, Dictionary dict, long timeMS)
          This routine should take no more than timeMS millseconds to produce a valid solution to this grid.
 

Methods in cmsc433.p3 with parameters of type Solution
 void Grid.display(Solution sol)
          This method displays the grid using the Swing GUI library, along with a depiction of the given solution.
 int Grid.score(Dictionary dict, Solution sol)
          Computes the score of the given Solution.