UndirectedEdge constructor

UndirectedEdge(
  1. Vertex a,
  2. Vertex b,
  3. double weight
)

Implementation

UndirectedEdge(Vertex a, Vertex b, double weight) : super(a, b, weight);