DirectedEdge constructor

DirectedEdge(
  1. Vertex source,
  2. Vertex target,
  3. double weight
)

Implementation

DirectedEdge(Vertex source, Vertex target, double weight)
    : super(source, target, weight);