Esempio n. 1
0
 public NumericGreaterThan(double left, INumericComputable right)
 {
     Left  = new NumericConstant(left);
     Right = right;
 }
Esempio n. 2
0
 public NumericLessThanOrEquals(double left, INumericComputable right)
 {
     Left  = new NumericConstant(left);
     Right = right;
 }