示例#1
0
文件: MAXSR.py 项目: IanReid/ABFGP
    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())
示例#2
0
文件: MAXSR.py 项目: IanReid/ABFGP
    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())
示例#3
0
    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())
示例#4
0
    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())