public class BestPath
{
    public BestPath()
    {
        path = "";
        score = Integer.MIN_VALUE;
    }

    public int getScore()
    { return score; }

    public void setPath( String p )
    { path = p; }

    public void setScore( int s )
    { score = s; }

    public String path;
    public int score;
}
