drools-benchmarks-parent/drools-benchmarks-reliability/src/main/java/org/drools/benchmarks/reliability/providers/ComplexRulesWithJoinsProvider.java [66:81]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public ComplexRulesWithJoinsProvider(final int numberOfJoins, final boolean withCep, final boolean withImports,
                                         final boolean prioritizedBySalience, final String global, final String consequence,
                                         final String rootConstraintValueOperator, final String joinConstraintValueOperator) {
        if (numberOfJoins > 4) {
            throw new IllegalArgumentException(
                    "Unsupported number of joins! Maximal allowed number of joins is 4, actual is " + numberOfJoins);
        }
        this.numberOfJoins = numberOfJoins;
        this.withCep = withCep;
        this.withImports = withImports;
        this.prioritizedBySalience = prioritizedBySalience;
        this.global = global;
        this.consequence = consequence;
        this.rootConstraintValueOperator = rootConstraintValueOperator;
        this.joinConstraintValueOperator = joinConstraintValueOperator;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



drools-benchmarks-parent/drools-benchmarks-common/src/main/java/org/drools/benchmarks/common/providers/RulesWithJoinsProvider.java [68:83]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public RulesWithJoinsProvider(final int numberOfJoins, final boolean withCep, final boolean withImports,
            final boolean prioritizedBySalience, final String global, final String consequence,
            final String rootConstraintValueOperator, final String joinConstraintValueOperator) {
        if (numberOfJoins > 4) {
            throw new IllegalArgumentException(
                    "Unsupported number of joins! Maximal allowed number of joins is 4, actual is " + numberOfJoins);
        }
        this.numberOfJoins = numberOfJoins;
        this.withCep = withCep;
        this.withImports = withImports;
        this.prioritizedBySalience = prioritizedBySalience;
        this.global = global;
        this.consequence = consequence;
        this.rootConstraintValueOperator = rootConstraintValueOperator;
        this.joinConstraintValueOperator = joinConstraintValueOperator;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



