Skip to content

Commit

Permalink
refactored matter and portionOf
Browse files Browse the repository at this point in the history
  • Loading branch information
gruninger committed Jan 31, 2019
1 parent b0cc297 commit e53e5d4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
11 changes: 1 addition & 10 deletions ontologies/matter/matter.clif
@@ -1,14 +1,5 @@
(cl-text http://colore.oor.net/matter/matter.clif

(cl-imports http://colore.oor.net/constitution/constitution.clif)

(forall (x y)
(iff (portionOf x y)
(exists (w z)
(and (constitutes w x)
(constitutes z y)
(chunkOf w z)))))

(cl-comment 'Proper Parthood')
(forall (x y)
(iff (properChunkOf x y)
Expand Down Expand Up @@ -44,4 +35,4 @@
(chunkOf y x))
(= x y)))

)
)
13 changes: 13 additions & 0 deletions ontologies/matter/portionOf.clif
@@ -0,0 +1,13 @@
(cl-text http://colore.oor.net/matter/definitions/portionOf.clif

(cl-imports http://colore.oor.net/matter/matter.clif)

(cl-imports http://colore.oor.net/constitution/constitution.clif)

(forall (x y)
(iff (portionOf x y)
(exists (w z)
(and (constitutes w x)
(constitutes z y)
(chunkOf w z)))))

0 comments on commit e53e5d4

Please sign in to comment.