public IntersectionRealSet(IRealSet first, IRealSet second)
 {
     this.first  = first;
     this.second = second;
 }
Example #2
0
 public UnionRealSet(IRealSet first, IRealSet second)
 {
     this.first  = first;
     this.second = second;
 }
 public ComplementRealSet(IRealSet first)
 {
     this.first = first;
 }