-
Notifications
You must be signed in to change notification settings - Fork 76
SUO‐KIF Causality
epachamo edited this page Feb 12, 2025
·
2 revisions
Three relationships that are used in causality
(causes Process1 Process2), Process1 is the cause of Process2
(causesSubclass Process1 Process2), Process1 is frequently the cause of Process2
(causesProposition Formula1 Formula2), If Formula2 occurred, then Formula1 is the likely cause of Formula2
(causesSubclass SoilErosion Siltation)
(causesProposition
(and
(instance ?H Human)
(attribute ?H HighBloodPressure))
(exists (?S)
(and
(instance ?S Stroke)
(experiencer ?S ?H)))
(exists (?PIPE ?PIPEDAMAGE ?HOUSE ?LEAK ?HOUSEDAMAGE)
(and
(instance ?PIPE Pipeline)
(instance ?PIPEDAMAGE Damaging)
(patient ?PIPEDAMAGE ?PIPE)
(instance ?HOUSE House)
(instance ?HOUSEDAMAGE Damaging)
(patient ?HOUSEDAMAGE ?HOUSE)
(instance ?LEAK LiquidMOtion)
(origin ?LEAK ?PIPE)
(orientation ?PIPE ?HOUSE Inside)
(causes ?PIPEDAMAGE ?LEAK)
(causes ?LEAK ?HOUSEDAMAGE)))