Package lupos.optimizations.physical.joinorder.costbasedoptimizer.splitheuristic

Examples of lupos.optimizations.physical.joinorder.costbasedoptimizer.splitheuristic.SplitCartesianProduct


  /**
   * @return the default heuristics to be applied always on a set of triple patterns to be joined
   */
  protected static List<SplitHeuristic> getApplyAlwaysHeuristics(){
    final List<SplitHeuristic> applyAlwaysHeuristics = new LinkedList<SplitHeuristic>();
    applyAlwaysHeuristics.add(new SplitCartesianProduct());
    return applyAlwaysHeuristics;
  }
View Full Code Here

TOP

Related Classes of lupos.optimizations.physical.joinorder.costbasedoptimizer.splitheuristic.SplitCartesianProduct

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.