package simulatedAnnealing;

/** stores the result of the computation*/
public class Res  implements java.io.Serializable {
  /** the path that was found by the computation */
  public Path path;

  /** the number of packets sent by the computation*/
  public int packetsSent;

  /** the number of packets that were completed in the computation */
  public int packetsArrived;

  Res(Path path,int packetsSent,int packetsArrived) {
    this.path = path;
    this.packetsSent = packetsSent;
    this.packetsArrived = packetsArrived;
  }
}
