Uses of Interface
engine_lsd.State

Packages that use State
engine_lsd   
sudoku_state_research   
 

Uses of State in engine_lsd
 

Fields in engine_lsd declared as State
private  State[] PriorityQueue.array
           
 

Methods in engine_lsd that return State
 State Engine.completeSearch()
          Perform a complete search until goal is reached or resources exausted
 State Engine.expand()
          Expand a state putting its successors in the queue
 State PriorityQueue.get()
          Remove the smallest item from the priority queue.
 State PriorityQueue.look()
          Find the smallest item in the priority queue.
 

Methods in engine_lsd with parameters of type State
 void PriorityQueue.put(State x)
          Insert into the priority queue.
 

Constructors in engine_lsd with parameters of type State
Engine(State seed)
          Constructor
 

Uses of State in sudoku_state_research
 

Classes in sudoku_state_research that implement State
 class SudokuState
          Classe che definisce lo stato di una griglia Sudoku prima, durante e dopo l'esecuzione dell'algoritmo.