Skip to content
Snippets Groups Projects
Commit 79844840 authored by Carry Morgane's avatar Carry Morgane
Browse files
parents c6e46712 b15005e4
No related branches found
No related tags found
No related merge requests found
Pipeline #
package model;
import java.util.List;
import java.util.PriorityQueue;
import java.util.Queue;
public class Solver {
private Queue<State> states;
private State currentState;
private Board board;
public Solver(Board board)
{
this.states = new PriorityQueue<>();
this.board = board;
this.currentState = null;
}
public List<Move> solve()
{
//TODO: 4/27/16
return null;
}
private void AStar()
{
}
public Board getBoard()
{
return board;
}
public void setBoard(Board board)
{
this.board = board;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment