Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #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)