* Join ordering according to primarily least new variables and secondary least solutions for the next best chosen triple pattern...
*/
public class RearrangeTriplePatternsInIndexScanLeastNewVariablesAndLeastEntries extends RearrangeJoinOrderWithScoringTriplePatterns {
public RearrangeTriplePatternsInIndexScanLeastNewVariablesAndLeastEntries(){
this.scorings.add(new ScoringTriplePatternLeastNewVariables());
this.scorings.add(new ScoringTriplePatternLeastEntries());
}