public void Add(
IList<SortedSet<double>> featurePremises,
double responseConclusion,
double truthValue
)
Public Sub Add (
featurePremises As IList(Of SortedSet(Of Double)),
responseConclusion As Double,
truthValue As Double
)
public:
void Add(
IList<SortedSet<double>^>^ featurePremises,
double responseConclusion,
double truthValue
)
member Add :
featurePremises : IList<SortedSet<float>> *
responseConclusion : float *
truthValue : float -> unit
A premise can be empty, but in such case it is represented as matching the corresponding feature domain. Equivalently, a premise which is not a nonempty proper subset of the domain is always valid for every item in the feature space.
ArgumentNullException | featurePremises is null. |
ArgumentOutOfRangeException | truthValue is negative. -or- truthValue is greater than unity. |
ArgumentException | featurePremises has not the same
Count of the
FeatureVariables of this instance. -or- Some set in featurePremises contains a value which is not a category code in the corresponding variable of FeatureVariables. |