interface Edge { public Node getSource(); public Node getDest(); public int getCost(); public boolean equals(Object o); public String toString(); }