Source of Edge.java


  1: //Edge.java

  3: class Edge
  4: {
  5:     public Vertex fromVertex;
  6:     public Vertex toVertex;
  7:     public double weight;

  9:     public Edge
 10:     (
 11:         Vertex from,
 12:         Vertex to,
 13:         double weight
 14:     )
 15:     {
 16:         fromVertex = from;
 17:         toVertex = to;
 18:         this.weight = weight;
 19:     }
 20: }