Exemplo n.º 1
0
 public JudgmentM(
     IList <ILinguisticVariable> linguistics,
     IList <FactorFuzzyValue> termSets,
     FactorTitle title,
     FactorFuzzyValue fuzzyValue,
     LogicalConnection connection
     ) : this(linguistics, termSets, null)
 {
     SelectedTitle      = title;
     SelectedFuzzyValue = fuzzyValue;
     SelectedConnection = connection;
 }
 public static string ToString(this LogicalConnection logicalConnection) => logicalConnection switch
 {
Exemplo n.º 3
0
 public JudgmentLine(LogicalConnection connection, IList <Judgment> judgments)
 {
     this.Connection = connection;
     this.Judgments  = judgments;
 }