AFC - Abacus Formula Compiler for Java

Decompiled Code For DSUM( B2:E8, "Yield", C10:D11 )

The expression

=DSUM( B2:E8, "Yield", C10:D11 )

is compiled to the following class(es):

package org.formulacompiler.gen;
import org.formulacompiler.runtime.Computation;
import org.formulacompiler.runtime.internal.Environment;
import org.formulacompiler.tests.reference.base.Inputs;
import org.formulacompiler.tests.reference.base.Outputs;

final class $Root extends Outputs implements Computation
{
    private final Inputs $inputs;
    final Environment $environment;

    $Root(Inputs inputs, Environment environment) {
        $environment = environment;
        $inputs = inputs;
    }

    final double get$0() {
        return get$1();
    }

    public final double dbl() {
        return get$0();
    }

    final double get$1() {
        double d = 0.0;
        if (get$2(18.0))
            d += 14.0;
        if (get$2(12.0))
            d += 10.0;
        if (get$2(13.0))
            d += 9.0;
        if (get$2(14.0))
            d += 10.0;
        if (get$2(9.0))
            d += 8.0;
        if (get$2(8.0))
            d += 6.0;
        return d;
    }

    final boolean get$2(double d) {
        if (d > 10.0 &#38;&#38; d < 16.0)
            return true;
        return false;
    }
}