예제 #1
0
        public Antecedent OR(params Judgment[] judgments)
        {
            JudgmentLine line = new JudgmentLine(LogicalConnection.OR, judgments);

            antecedent.Add(line);

            return(this);
        }
예제 #2
0
        public Antecedent AND(Judgment judgment)
        {
            JudgmentLine line = new JudgmentLine(LogicalConnection.AND, new List <Judgment> {
                judgment
            });

            antecedent.Add(line);

            return(this);
        }