Skip to content

Commit

Permalink
corrected typos in matter.clif
Browse files Browse the repository at this point in the history
  • Loading branch information
carmenchui committed Jun 24, 2018
1 parent 5b7c825 commit 90ba552
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ontologies/matter/matter.clif
Expand Up @@ -28,17 +28,17 @@
(iff (chunkDisjoints x y)
(not (chunkOverlaps x y))))

(cl-text 'Transitivity')
(cl-comment 'Transitivity')
(forall (x y z)
(if (and (chunkOf x y)
(chunkOf y z))
(chunkOf x z)))

(cl-text 'Reflexivity')
(cl-comment 'Reflexivity')
(forall (x)
(chunkOf x x))

(cl-text 'Antisymmetry')
(cl-comment 'Antisymmetry')
(forall (x y)
(if (and (chunkOf x y)
(chunkOf y x))
Expand Down

0 comments on commit 90ba552

Please sign in to comment.