-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
209 changed files
with
94,322 additions
and
18,912 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
|
||
(= | ||
(domaintype color nominal) True) | ||
; | ||
|
||
|
||
(= | ||
(valueset color | ||
(red green blue)) True) | ||
; | ||
|
||
|
||
(= | ||
(domaintype temp linear) True) | ||
; | ||
|
||
|
||
(= | ||
(order temp | ||
(cold warm hot)) True) | ||
; | ||
|
||
|
||
(= | ||
(domaintype shape nominal) True) | ||
; | ||
|
||
|
||
(= | ||
(valueset shape | ||
(square hexagon octagon)) True) | ||
; | ||
|
||
|
||
(= | ||
(classes | ||
(past present future)) True) | ||
; | ||
|
||
|
||
(= | ||
(events past | ||
( ( ( (= color red)) | ||
( (= temp warm)) | ||
( (= shape square))) (((= color green)) ((= temp cold)) ((= shape hexagon))))) True) | ||
; | ||
|
||
(= | ||
(events present | ||
( ( ( (= color blue)) | ||
( (= temp warm)) | ||
( (= shape square))) (((= color red)) ((= temp hot)) ((= shape hexagon))))) True) | ||
; | ||
|
||
(= | ||
(events future | ||
( ( ( (= color green)) | ||
( (= temp warm)) | ||
( (= shape hexagon))) (((= color blue)) ((= temp hot)) ((= shape octagon))))) True) | ||
; | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
|
||
(= | ||
(domaintype color nominal) True) | ||
; | ||
|
||
|
||
(= | ||
(valueset color | ||
(red green blue)) True) | ||
; | ||
|
||
|
||
(= | ||
(domaintype temp linear) True) | ||
; | ||
|
||
|
||
(= | ||
(order temp | ||
(cold warm hot)) True) | ||
; | ||
|
||
|
||
(= | ||
(domaintype shape nominal) True) | ||
; | ||
|
||
|
||
(= | ||
(valueset shape | ||
(square hexagon octagon)) True) | ||
; | ||
|
||
|
||
(= | ||
(classes | ||
(past present future)) True) | ||
; | ||
|
||
|
||
(= | ||
(events past | ||
( ( ( (= color red)) | ||
( (= shape square)) | ||
( (= temp warm))) | ||
( ( (= color red)) | ||
( (= shape hexagon)) | ||
( (= temp hot))) | ||
( ( (= color green)) | ||
( (= shape hexagon)) | ||
( (= temp cold))))) True) | ||
; | ||
|
||
(= | ||
(events present | ||
( ( ( (= color blue)) | ||
( (= shape square)) | ||
( (= temp warm))) | ||
( ( (= color red)) | ||
( (= shape hexagon)) | ||
( (= temp hot))) | ||
( ( (= color red)) | ||
( (= shape hexagon)) | ||
( (= temp hot))))) True) | ||
; | ||
|
||
(= | ||
(events future | ||
( ( ( (= color green)) | ||
( (= shape hexagon)) | ||
( (= temp warm))) | ||
( ( (= color red)) | ||
( (= shape hexagon)) | ||
( (= temp hot))) | ||
( ( (= color blue)) | ||
( (= shape octagon)) | ||
( (= temp hot))))) True) | ||
; | ||
|
||
|
||
|
Oops, something went wrong.