AForge.Fuzzy.Rulebase.GetRule C# (CSharp) Method

GetRule() public method

Returns an existing fuzzy rule from the rulebase.
The rule indicated in ruleName was not found in the rulebase.
public GetRule ( string ruleName ) : AForge.Fuzzy.Rule
ruleName string Name of the fuzzy to retrieve.
return AForge.Fuzzy.Rule
        public Rule GetRule( string ruleName )
        {
            return rules [ruleName];
        }