{
System.out.println("Search : "+s) ;
Iterator<HitLARQ> hits = index.search(s) ;
while ( hits.hasNext() )
{
HitLARQ h = hits.next() ;
String str = FmtUtils.stringForNode(h.getNode()) ;
if ( super.isVerbose() )
System.out.printf(" %-20s %.2f\n", str, h.getScore()) ;
else
System.out.printf(" %-20s\n",str) ;
}
}
}