コード例 #1
0
 public MISORuleSet(LinguisticType conclusionType)
 {
     ConclusionType = conclusionType;
 }
コード例 #2
0
 public FixedValue(LinguisticType type, double value)
 {
     Type  = type;
     Value = value;
 }
コード例 #3
0
 public CombinedValue(LinguisticType type)
 {
     Type = type;
 }
コード例 #4
0
 public LinguisticVariable(string name, LinguisticType type)
 {
     Name  = name;
     Type  = type;
     Value = null;
 }