HoffmanPavleyRankedShortestPathAlgorithm.ToString()
jnyrup opened this issue · 1 comments
jnyrup commented
The ToString
in HoffmanPavleyRankedShortestPathAlgorithm
is implemented as
public override string ToString()
{
return String.Format("{0} at {1} {2}", this.Weight, this.DeviationEdge);
}
This will obviously throw an exception as the number of arguments doesn't match the expected number in the format string.
As I'm not sure what the intended format is, I haven't submitted a PR to fix this.