Esempio n. 1
0
    def is_complete(self):
        """
        Is this graph a complete K(s) graph ( fully connected )? 

        @attention: for documentation see completegraph.is_complete()
        """
        completegraph.is_complete(self)
Esempio n. 2
0
    def is_complete(self):
        """
        Is this graph a complete K(s) graph ( fully connected )? 

        @attention: for documentation see completegraph.is_complete()
        """
        completegraph.is_complete(self)
Esempio n. 3
0
    def is_fully_connected(self):
        """
        Is this graph a complete K(s) graph ( fully connected )?

        @attention: alias function for completegraphs.is_complete()
        @attention: for documentation see completegraph.is_complete()
        """
        completegraph.is_complete(self)
Esempio n. 4
0
    def is_fully_connected(self):
        """
        Is this graph a complete K(s) graph ( fully connected )?

        @attention: alias function for completegraphs.is_complete()
        @attention: for documentation see completegraph.is_complete()
        """
        completegraph.is_complete(self)