Exemplo n.º 1
0
    public void visit(int from, int into, double e) {
      if (e < minAbsValue) {
        return;
      }

      final double toMaxRatio = e / max;
      if (toMaxRatio < minToMaxRatio) {
        return;
      }

      result.set(from, into, e);
    }