|
SOLUTIONS
|
BUILT-IN MATHEMATICA SYMBOL
FindClique[g]
finds a largest clique in the graph g.
FindClique[g, n]
finds a clique containing at most n vertices.
FindClique[g, {n}]
finds a clique containing exactly n vertices.
FindClique[g, {nmin, nmax}]
finds a clique containing between
and
vertices.
FindClique[g, nspec, s]
finds at most s cliques.
FindClique[{g, v}, ...]
finds cliques that include the vertex v only.
DetailsDetails
- A clique is a maximal set of vertices where the corresponding subgraph is a complete graph.
- FindClique returns a list of cliques.
- FindClique will return an empty list if there is no clique.
- FindClique[..., nspec, All] finds all the cliques.
- For weighted graphs, FindClique gives a set of vertices with maximum sum of vertex weights.
New in 8 | Last modified in 9
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »



