From 279ced848b1385abbb28b51ec983e7dadfaa34cd Mon Sep 17 00:00:00 2001 From: Alexey Pushkin Date: Sat, 15 Sep 2012 21:51:18 +0400 Subject: [PATCH] relation: missed implementation for the contains? function --- src/cljts/relation.clj | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/cljts/relation.clj b/src/cljts/relation.clj index 841750f..854e99f 100644 --- a/src/cljts/relation.clj +++ b/src/cljts/relation.clj @@ -44,6 +44,8 @@ a.Overlaps(b) ⇔ ( dim(I(a)) = dim(I(b)) = dim(I(a) ∩ I(b))) ∧ (a ∩ b ≠ (.crosses this that)) (within? [this that] (.within this that)) + (contains? [this that] + (.contains this that)) (overlaps? [this that] (.overlaps this that)) (relate? [this that de9-im] @@ -63,5 +65,7 @@ a.Overlaps(b) ⇔ ( dim(I(a)) = dim(I(b)) = dim(I(a) ∩ I(b))) ∧ (a ∩ b ≠ (.crosses this that)) (within? [this that] (.within this that)) + (contains? [this that] + (.contains this that)) (overlaps? [this that] (.overlaps this that)))