public static List<Clique> getFullDependenceCliques(RetrievalEnvironment env,
String[] queryTerms, Node domNode, boolean ordered, boolean docDependent)
throws ConfigurationException {
List<Clique> cliques = Lists.newArrayList(); // Clique set.
DocumentNode docNode = new DocumentNode(); // The document node.
// If there are no terms, then return an empty MRF.
if (queryTerms.length == 0) {
return cliques;
}