node_clique_numbers
Computes node clique numbers and stores the results as attributes on the graph.
Parameters
- g : SAS graph object
-
Specifies the simple and undirected input graph to assess.
- inplace : bool, optional
-
Specifies whether to add the clique number values as attributes to the input graph directly or to create a copy of the graph. The default is False.
- data : bool, optional
-
Specifies whether or not to retain attributes. When the value is True and the value of the inplace parameter is False (default values), the node and edge attributes of the graph are retained. This parameter has no effect when the inplace parameter is set to True.
Returns
- SAS graph object or None
-
Returns a graph or modifies the existing graph to contain the node attribute clique_number, which includes the clique number of each node. The graph g has the attribute g.solution_summary, which contains information about the results of the algorithm.