/**
 * TSP Interface
 */

public interface TSPInf {

/**
 * Search the best path for a TSP problem.
 * @param max, maximal number of iterations or Long.MAX_VALUE.
 */

    public Path getBest();

    public Path getBest(long max);

}
