forked from GitHub/gf-core
From Janna.
This commit is contained in:
36
grammars/health/Health.gf
Normal file
36
grammars/health/Health.gf
Normal file
@@ -0,0 +1,36 @@
|
||||
abstract Health = {
|
||||
|
||||
cat
|
||||
Specialization ; Patient ; Body ; Symptom ; SymptomDegree ; Illness ;
|
||||
Prop ; Condition ; Medicine ;
|
||||
|
||||
fun
|
||||
And : Prop -> Prop -> Prop ;
|
||||
Complain : Patient -> Symptom -> Prop ;
|
||||
FeverMod : SymptomDegree -> Symptom ;
|
||||
PainIn : Patient -> Body -> Prop ;
|
||||
PainInMod : Patient -> Body -> SymptomDegree -> Prop ;
|
||||
Injured : Patient -> Body -> Prop ;
|
||||
Broken : Patient -> Body -> Prop ;
|
||||
HaveIllness : Patient -> Illness -> Prop ;
|
||||
BeInCondition : Patient -> Condition -> Prop ;
|
||||
NeedDoctor : Patient -> Specialization -> Prop ;
|
||||
NeedMedicine : Patient -> Medicine -> Prop ;
|
||||
TakeMedicine : Patient -> Medicine -> Prop ;
|
||||
CatchCold : Condition ;
|
||||
Pregnant : Condition ;
|
||||
Fever : Symptom ;
|
||||
High : SymptomDegree ;
|
||||
Terrible : SymptomDegree ;
|
||||
Head : Body ;
|
||||
Leg : Body ;
|
||||
ShePatient : Patient ;
|
||||
TheyPatient : Patient ;
|
||||
IPatientHe : Patient ;
|
||||
Influenza : Illness ;
|
||||
Malaria : Illness ;
|
||||
|
||||
Dentist : Specialization ;
|
||||
PainKiller : Medicine ;
|
||||
|
||||
} ;
|
||||
Reference in New Issue
Block a user