protected boolean evaluate()

in src/main/java/com/microsoft/dhalion/detectors/ScarceCpuDetector.java [36:46]


  protected boolean evaluate(String instance, double free, double demand) {
    if (demand <= 0) {
      return false;
    }

    if (free <= 0) {
      return true;
    }

    return demand / free >= thresholdRatio;
  }