Package net.sourceforge.jFuzzyLogic.ruleAggregation

Examples of net.sourceforge.jFuzzyLogic.ruleAggregation.RuleAggregationMethodBoundedSum


    //---
    // Aggregation (or accumulation) method
    //---
    RuleAggregationMethod ruleAggregationMethod;
    if( ruleAggregationMethodType.equalsIgnoreCase("MAX") ) ruleAggregationMethod = new RuleAggregationMethodMax();
    else if( ruleAggregationMethodType.equalsIgnoreCase("BSUM") ) ruleAggregationMethod = new RuleAggregationMethodBoundedSum();
    else if( ruleAggregationMethodType.equalsIgnoreCase("NSUM") ) ruleAggregationMethod = new RuleAggregationMethoNormedSum();
    else if( ruleAggregationMethodType.equalsIgnoreCase("PROBOR") ) ruleAggregationMethod = new RuleAggregationMethodProbOr();
    else if( ruleAggregationMethodType.equalsIgnoreCase("SUM") ) ruleAggregationMethod = new RuleAggregationMethodSum();
    else throw new RuntimeException("Unknown/Unimplemented Rule aggregation method '" + ruleAggregationMethodType + "'");
    // Set variable's rule aggregation method
View Full Code Here

TOP

Related Classes of net.sourceforge.jFuzzyLogic.ruleAggregation.RuleAggregationMethodBoundedSum

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.