Uses of Class
nz.ac.waikato.mcennis.rat.graph.Clique

Packages that use Clique
nz.ac.waikato.mcennis.rat.graph   
nz.ac.waikato.mcennis.rat.graph.algorithm.clustering   
 

Uses of Clique in nz.ac.waikato.mcennis.rat.graph
 

Methods in nz.ac.waikato.mcennis.rat.graph that return Clique
 Clique Clique.duplicate()
          Create a duplicate Clique that is equal to the original
 Clique Clique.expand(Actor u)
          Identical to add(Actor u) except that this Clique is unchanged and a new Clique is returned.
 

Methods in nz.ac.waikato.mcennis.rat.graph that return types with arguments of type Clique
 java.util.HashSet<Clique> Clique.expand(Graph g)
          Given this clique (and the graph) - generate all cliques of one bigger size that have this clique as a subclique where the new actor is greater (by compareTo) than any other actor in the clique.
 

Uses of Clique in nz.ac.waikato.mcennis.rat.graph.algorithm.clustering
 

Methods in nz.ac.waikato.mcennis.rat.graph.algorithm.clustering that return Clique
 Clique NaiveImplementClique.SubGroup.makeClique()
          If this is a clique, create it from this subgroup
 

Methods in nz.ac.waikato.mcennis.rat.graph.algorithm.clustering with parameters of type Clique
protected  void EnumerateMaximalCliques.extend(Clique seed, Actor[] intersection)
          create a set of new cliques of size n+1 from a clique of size n.
 

Method parameters in nz.ac.waikato.mcennis.rat.graph.algorithm.clustering with type arguments of type Clique
protected  void EnumerateMaximalCliques.assertMaximal(java.util.HashSet<Clique> maximal)
          This functions identify those cliques that are subsets of maixmal cliques rather than maximal cliques themselves.