예제 #1
0
 public static bool _eval(Implication p)
 {
     return !p. antecedent () || p.consequent ();
 }
예제 #2
0
 public DoubleImplication(Func <bool> Consequent, Func <bool> Antecedent)
     : this()
 {
     p = new Implication(Antecedent, Consequent);
 }
예제 #3
0
 public DoubleImplication(Func<bool> Consequent, Func<bool> Antecedent)
     : this()
 {
     p = new Implication (Antecedent, Consequent);
 }
예제 #4
0
 public static bool _eval(Implication p)
 {
     return(!p.antecedent() || p.consequent());
 }