Skip to content

Commit

Permalink
relation: missed implementation for the contains? function
Browse files Browse the repository at this point in the history
  • Loading branch information
bapehbe committed Sep 15, 2012
1 parent 88969a5 commit 279ced8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/cljts/relation.clj
Expand Up @@ -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]
Expand All @@ -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)))

0 comments on commit 279ced8

Please sign in to comment.