Ejemplo n.º 1
0
 // this relation has no tuples in common with other
 public bool IsDisjoint(RelValueST <Ttup> other)
 {
     return(!this.Any(b => other.Contains(b)));
 }
Ejemplo n.º 2
0
 // this relation is a subset of other
 public bool IsSubset(RelValueST <Ttup> other)
 {
     return(this.All(b => other.Contains(b)));
 }