Accord.Fuzzy.InferenceSystem.GetRule C# (CSharp) Method

GetRule() public method

Gets one of the Rules of the Rulebase.
The rule indicated in /// was not found in the rulebase.
public GetRule ( string ruleName ) : Rule
ruleName string Name of the to get.
return Rule
        public Rule GetRule(string ruleName)
        {
            return this.rulebase.GetRule(ruleName);
        }