// cliques_stub.cc   a stub that ignores it's input!   -bds Nov99
#include <iostream.h>
#include "cliques.h"

SDL cliques(const DataSet& D)
{ 
  cerr <<  endl <<
"cliques sez: Hi, I'm just a stub which always returns a SDL of length 1, "
  << endl << 
"and the one set descriptor has size = 1 and representative = 123456789."
  << endl << endl;

  SetDescriptor dummy(123456789);
  SDL L;
  L.push_back(dummy); // let's say this list of length 1 is my answer.
  return L;
}

