Project

General

Profile

Task #4109

Updated by Nicholas Gordon over 6 years ago

Currently, NextHopList is implemented as a class that implements semantics that allow only one next hop in the list, which are equivalent to a set. Further, it implements comparison semantics for NextHopLists. We should use This would be unnecessary if using a container that suits set, since the requirements better. equality for sets is done by comparing size and whether each element in the set is also equal.

Back