You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently when pathfinder searches for a path it returns all paths that have the minimum total weight for the given spf attribute. It would be nice if we could further narrow down the selection of paths by including a tiebreaker, or list of tiebreakers, that will eliminate paths by applying additional metrics to them.
For example if I have 3 possible paths with the given total weights:
And we wanted the path with the lowest hop count, we would get back both path_a and path_b. If we add in a tiebreaker based on delay, we would then get only path_b.
The text was updated successfully, but these errors were encountered:
Currently when pathfinder searches for a path it returns all paths that have the minimum total weight for the given spf attribute. It would be nice if we could further narrow down the selection of paths by including a tiebreaker, or list of tiebreakers, that will eliminate paths by applying additional metrics to them.
For example if I have 3 possible paths with the given total weights:
And we wanted the path with the lowest
hop
count, we would get back bothpath_a
andpath_b
. If we add in a tiebreaker based ondelay
, we would then get onlypath_b
.The text was updated successfully, but these errors were encountered: