Skip to content

Commit

Permalink
MeTTa Files
Browse files Browse the repository at this point in the history
  • Loading branch information
TeamSPoon committed Feb 26, 2024
1 parent 48bda8d commit 0b0d2d1
Show file tree
Hide file tree
Showing 209 changed files with 94,322 additions and 18,912 deletions.
2,365 changes: 2,365 additions & 0 deletions aq1/aq1.metta

Large diffs are not rendered by default.

63 changes: 63 additions & 0 deletions aq1/aq1_1.metta
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)
;



81 changes: 81 additions & 0 deletions aq1/aq1_2.metta
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)
;



Loading

0 comments on commit 0b0d2d1

Please sign in to comment.