addRule method

FuzzyModule addRule(
  1. FuzzyRule rule
)

Adds the given fuzzy rule to this fuzzy module.

Implementation

FuzzyModule addRule(FuzzyRule rule ) {
	rules.add( rule );
	return this;
}