addFLV method

FuzzyModule addFLV(
  1. String name,
  2. FuzzyVariable flv
)

Adds the given FLV under the given name to this fuzzy module.

Implementation

FuzzyModule addFLV(String name, FuzzyVariable flv ) {
	flvs[name] = flv;
	return this;
}