public void addInstantiatedCliques (ACRF.UnrolledGraph graph,
FeatureVectorSequence fvs,
LabelsAssignment lblseq)
{
THashMultiMap fvByWord = constructFvByWord (fvs);
int numSkip = 0;
for (Iterator it = fvByWord.keySet ().iterator (); it.hasNext ();) {
String wordFeature = (String) it.next ();
List infoList = (List) fvByWord.get (wordFeature);
int N = infoList.size ();
if (debug && N > 1) System.err.print ("Processing list of size "+N+" ("+wordFeature+")");
for (int i = 0; i < N; i++) {