Beispiel #1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="set"></param>
 /// <param name="subsets">a set of sets</param>
 public SigmaAlgebra(SetI universal)
 {
     this.universal = universal;
 }
 public SetBinaryOpExpr(SetI a, SetI b, BinaryOpI <SetI, SetI, SetI> op)
     : base(a, b)
 {
     this.op = op;
 }
Beispiel #3
0
 public Union(SetI <T> item1, SetI <T> item2) : base(item1, item2)
 {
 }
Beispiel #4
0
 public PowerSetExpr(SetI set)
 {
     this.set = set;
 }
Beispiel #5
0
 public Binary(op.BinaryI <T> op, SetI <T> a, SetI <T> b)
 {
     this.op = op;
     this.a  = a;
     this.b  = b;
 }