public MISORuleSet(LinguisticType conclusionType) { ConclusionType = conclusionType; }
public FixedValue(LinguisticType type, double value) { Type = type; Value = value; }
public CombinedValue(LinguisticType type) { Type = type; }
public LinguisticVariable(string name, LinguisticType type) { Name = name; Type = type; Value = null; }