def maxsr_starts(self): """ Return a dictionary of MAXSR start coodinates (keys==nodes) @rtype: dictionary @return: dict[Node] = MAXSR start coords (integer) as values """ return _min_dict(self.maximal_spanning_range())
def omsr_starts(self): """ Return a dictionary of OMSR start coodinates (keys==nodes) @rtype: dictionary @return: dict[Node] = OMSR start coords (integer) as values """ return _min_dict(self.overall_minimal_spanning_range())