javascript-fuzzylogic
Version:
A library that allows for manipulation of fuzzy sets in JavaScript
9 lines (8 loc) • 371 B
TypeScript
import { Antecedent, Consequent, LinguisticRuleOperator } from './types';
export declare class LinguisticRule {
readonly operator: LinguisticRuleOperator;
readonly antecedents: Antecedent[];
readonly consequent: Consequent;
constructor(operator: LinguisticRuleOperator, antecedents: Antecedent[], consequent: Consequent);
prettyPrint: () => string;
}