Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added new terms in Transport_2024.kif #394

Merged
merged 1 commit into from
Oct 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 77 additions & 0 deletions development/Transport_2024.kif
Original file line number Diff line number Diff line change
Expand Up @@ -780,4 +780,81 @@ describe an &%Artifact that cannot be desginated for &Repairing.")
(and
(instance ?R Repairing)
(patient ?R ?A)))))

(subclass MultimodalTransitPoint Region)
(subclass MultimodalTransitPoint TransitTerminal)
(documentation MultimodalTransitPoint EnglishLanguage "&%MultimodalTransitPoint is facility that
allows travelers to and freight to easily transition between different modes of transportation.
This can include rail, road, air and water transitway.")
(termFormat EnglishLanguage MultimodalTransitPoint "multi modal transportation point")

(typicalPart MultimodalTransitPoint MultiModalTransitSystem)

(=>
(instance ?X MultimodalTransitPoint)
(exists (?T1 ?A ?T2 ?B)
(and
(instance ?T1 (TransitFn ?A))
(instance ?A AirTransitway)
(path ?T1 ?A)
(instance ?T2 (TransitFn ?B))
(path ?T2 ?B)
(connects ?X ?A ?B)
(not
(equal ?T1 ?T2))
(or
(instance ?B Railway)
(instance ?B Roadway)
(instance ?B Waterway)))))

(=>
(instance ?X MultimodalTransitPoint)
(exists (?T1 ?A ?T2 ?B)
(and
(instance ?T1 (TransitFn ?A))
(instance ?A Waterway)
(path ?T1 ?A)
(instance ?T2 (TransitFn ?B))
(path ?T2 ?B)
(connects ?X ?A ?B)
(not
(equal ?T1 ?T2))
(or
(instance ?B Railway)
(instance ?B Roadway)
(instance ?B AirTransitway)))))

(=>
(instance ?X MultimodalTransitPoint)
(exists (?T1 ?A ?T2 ?B)
(and
(instance ?T1 (TransitFn ?A))
(instance ?A Railway)
(path ?T1 ?A)
(instance ?T2 (TransitFn ?B))
(path ?T2 ?B)
(connects ?X ?A ?B)
(not
(equal ?T1 ?T2))
(or
(instance ?B Waterway)
(instance ?B Roadway)
(instance ?B AirTransitway)))))

(=>
(instance ?X MultimodalTransitPoint)
(exists (?T1 ?A ?T2 ?B)
(and
(instance ?T1 (TransitFn ?A))
(instance ?A Roadway)
(path ?T1 ?A)
(instance ?T2 (TransitFn ?B))
(path ?T2 ?B)
(connects ?X ?A ?B)
(not
(equal ?T1 ?T2))
(or
(instance ?B Waterway)
(instance ?B Railway)
(instance ?B AirTransitway)))))

Loading