fuzzify method

FuzzyModule fuzzify(
  1. String name,
  2. double value
)

Calls the fuzzify method of the defined FLV with the given value.

Implementation

FuzzyModule fuzzify(String name, double value ) {
	final flv = flvs[name];
	flv?.fuzzify( value );
	return this;
}