algorithms.add(STCClusteringAlgorithm.class);
TabularOutput t = new TabularOutput(new PrintWriter(System.out));
t.columnSeparator(" | ");
t.defaultFormat(Double.class).format("%.3f");
t.addColumn("Topic").alignLeft().format("%-18s");
t.addColumn("Algorithm").alignLeft().format("%-15s");
for (AmbientTopic topic : topics)
{
for (Class<? extends IProcessingComponent> algorithm : algorithms)