def maxsr_ends(self): """ Return a dictionary of MAXSR end coodinates (keys==nodes) @rtype: dictionary @return: dict[Node] = MAXSR end coords (integer) as values """ return _max_dict(self.maximal_spanning_range())
def omsr_ends(self): """ Return a dictionary of OMSR end coodinates (keys==nodes) @rtype: dictionary @return: dict[Node] = OMSR end coords (integer) as values """ return _max_dict(self.overall_minimal_spanning_range())