Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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)