Examples of WeightedMaxCalculator


Examples of org.emftrace.quarc.core.aggregations.WeightedMaxCalculator

    calculators.put("avg", new AvgCalculator(
        leafElements, builder.getCacheManager()));
    if (weightsIncluded) {
      calculators.put(
          "weighted max",
          new WeightedMaxCalculator(leafElements, builder
              .getCacheManager()));
      calculators.put(
          "weighted min",
          new WeightedMinCalculator(leafElements, builder
              .getCacheManager()));
View Full Code Here

Examples of org.emftrace.quarc.core.aggregations.WeightedMaxCalculator

      calculators.put("min", new MinCalculator(leafElementsGoalLayer,
          getCacheManager()));
      calculators.put("avg", new AvgCalculator(leafElementsGoalLayer,
          getCacheManager()));
      if (!getCacheManager().getSelectedGoals().isEmpty()) {
        calculators.put("weighted max", new WeightedMaxCalculator(
            leafElementsGoalLayer, getCacheManager()));
        calculators.put("weighted min", new WeightedMinCalculator(
            leafElementsGoalLayer, getCacheManager()));
        calculators.put("weighted avg", new WeightedAvgCalculator(
            leafElementsGoalLayer, getCacheManager()));
      }

      if (element instanceof SolutionInstrument) {
        calculators.put("max", new MaxCalculator(
            leafElementsPrincipleLayer, getCacheManager()));
        calculators.put("min", new MinCalculator(
            leafElementsPrincipleLayer, getCacheManager()));
        calculators.put("avg", new AvgCalculator(
            leafElementsPrincipleLayer, getCacheManager()));
        if (!getCacheManager().getSelectedPrinciples().isEmpty()) {
          calculators.put("weighted max", new WeightedMaxCalculator(
              leafElementsPrincipleLayer, getCacheManager()));
          calculators.put("weighted min", new WeightedMinCalculator(
              leafElementsPrincipleLayer, getCacheManager()));
          calculators.put("weighted avg", new WeightedAvgCalculator(
              leafElementsPrincipleLayer, getCacheManager()));
View Full Code Here

Examples of org.emftrace.quarc.core.aggregations.WeightedMaxCalculator

    List<Element> goalList = new ArrayList<Element>();
    goalList.add(g1);
    goalList.add(g2);
   
   
    assertEquals(60.0f , new WeightedMaxCalculator(goalList, cacheManager).calcAggregation(si1));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.