System.out.println(c1);
System.out.println(c2);
SortedSet<LogLikelihood> list = new TreeSet<LogLikelihood>();
for (String each: (union(c1.terms(), c2.terms())).elements()) {
list.add(new LogLikelihood(c1.terms(), c2.terms(), each));
}
Out.puts(list);