-
- Type Parameters:
V
- the vertex type
- All Superinterfaces:
Collection<V>
,Iterable<V>
,Set<V>
- All Known Implementing Classes:
CliqueAlgorithm.CliqueImpl
- Enclosing interface:
- CliqueAlgorithm<V>
public static interface CliqueAlgorithm.Clique<V> extends Set<V>
A Clique
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
getWeight()
Returns the weight of the clique.-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
-
-
-
Method Detail
-
getWeight
double getWeight()
Returns the weight of the clique. When solving a weighted clique problem, the weight returned is the sum of the weights of the vertices in the clique. When solving the unweighted variant, the cardinality of the clique is returned instead.- Returns:
- weight of the independent set
-
-