Accord.Fuzzy.FuzzyOutput.OutputConstraint.OutputConstraint C# (CSharp) Method

OutputConstraint() private method

Initializes a new instance of the OutputConstraint class.
private OutputConstraint ( string label, float firingStrength ) : System
label string A string representing the output label of a .
firingStrength float The firing strength of a , to be applied to its output label.
return System
            internal OutputConstraint( string label, float firingStrength )
            {
                this.label          = label;
                this.firingStrength = firingStrength;
            }
            
FuzzyOutput.OutputConstraint