template<typename GR>
class lemon::GrossoLocatelliPullanMc< GR >::CliqueNodeIt
This iterator class lists the nodes of the found clique. Before using it, you must allocate a GrossoLocatelliPullanMc instance and call its run() method.
The following example prints out the IDs of the nodes in the found clique.
GrossoLocatelliPullanMc<Graph> mc(g);
mc.run();
for (GrossoLocatelliPullanMc<Graph>::CliqueNodeIt n(mc);
{
std::cout << g.id(n) << std::endl;
}
const Invalid INVALID
Invalid iterators.
Definition: base.cc:32