Exemplo n.º 1
0
 //-------------------------------------------------------------------------------------------------
 /// <summary>
 /// Initializes a new instance of the <see cref="FuzzyRelation"/> class.
 /// </summary>
 /// <param name="cMu">The membersip function.</param>
 /// <param name="cData">The elements of relation.</param>
 public FuzzyRelation(RelationMembershipFunction cMu, List<FuzzyRelationElement> cData)
 {
     m_cData = cData;
     Mu = cMu;
 }
Exemplo n.º 2
0
 //-------------------------------------------------------------------------------------------------
 //-------------------------------------------------------------------------------------------------
 /// <summary>
 /// Initializes a new instance of the <see cref="FuzzyRelation"/> class.
 /// </summary>
 /// <param name="cMu">The membersip function.</param>
 public FuzzyRelation(RelationMembershipFunction cMu)
 {
     Mu = cMu;
 }