Java/core/src/main/java/com/amazon/randomcutforest/anomalydetection/DynamicAttributionVisitor.java [60:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public DynamicAttributionVisitor(float[] point, int treeMass, int ignoreLeafMassThreshold,
            BiFunction<Double, Double, Double> scoreSeen, BiFunction<Double, Double, Double> scoreUnseen,
            BiFunction<Double, Double, Double> damp) {
        super(point, treeMass, ignoreLeafMassThreshold);
        this.scoreSeen = scoreSeen;
        this.scoreUnseen = scoreUnseen;
        this.damp = damp;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



Java/core/src/main/java/com/amazon/randomcutforest/anomalydetection/DynamicScoreVisitor.java [60:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public DynamicScoreVisitor(float[] point, int treeMass, int ignoreLeafMassThreshold,
            BiFunction<Double, Double, Double> scoreSeen, BiFunction<Double, Double, Double> scoreUnseen,
            BiFunction<Double, Double, Double> damp) {
        super(point, treeMass, ignoreLeafMassThreshold);
        this.scoreSeen = scoreSeen;
        this.scoreUnseen = scoreUnseen;
        this.damp = damp;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



