package simulatedAnnealing;

class Path  implements java.io.Serializable {
  public int []order;
  public double length;

  public Path(int citiesNumber) {
    order = new int[citiesNumber];
  }

  public void copy(Path path) {
    for (int i=0;i<path.order.length;i++)
      order[i]=path.order[i];
    length = path.length;
  }
}

