コード例 #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
ファイル: OMSR.py プロジェクト: atevanderburgt/ABFGP
    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())