diff options
Diffstat (limited to 'SocietyCulture.lean')
| -rw-r--r-- | SocietyCulture.lean | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/SocietyCulture.lean b/SocietyCulture.lean new file mode 100644 index 0000000..ca4d0da --- /dev/null +++ b/SocietyCulture.lean @@ -0,0 +1,17 @@ +import Mathematics + +-- Knowledge Base domain: SocietyCulture + +opaque Person : Type +-- Person extends Entity +axiom Person.val : Person → Entity +opaque Place : Type +-- Place extends Entity +axiom Place.val : Place → Entity +opaque City : Type +-- City extends Place +axiom City.val : City → Place +opaque athens : City +opaque birthyear : Person → Nat +opaque bornIn : Person → Place → Prop +axiom fact_bornIn_socrates_athens : bornIn socrates athens |
