次序列 (subList)
(subList list1 list2) means that list1 is a
sublist of list2, i.e. every element of list1 is an element of list2 and
the elements that are common to both Lists have the same order in both
Lists.
Ontology
SUMO / BASE-ONTOLOGYClass(es)
Subrelation(s)
初始化序列
Coordinate term(s)
弧線重量
作者
先於或同時
肇因
次類肇因
公民
封閉於
相連的
包含訊息
共生
複製
日期
降低可能性
發展期形式
無交集
分配
文字說明
持續時間
較早
編者
元素
雇用
相等
等同關係於
利用
以...語言表達
面對
家族關係
完成
次數
圖部分
大於
大於或等於
有意圖
有技巧
在...期間為真
須使...為真
有權使...為真
洞
同一元素
串列中
在注意範圍中
增加可能性
獨立或然率
居住
抑制
初始化序列
實例
倒序
非反射於...
大於
小於
小於或等於
位於
物質
測量
時段相接
情態屬性
時段重疊
雙親
部分
偏序於...
部分位於
路徑長
擁有
先決條件
避免
特性
出版
範圍
範圍次種類
提及
反射於...
SUMO內部相關概念
兄弟姊妹
小於
開始
次屬性
次聚集
次圖
次歷程
次命題
次種類
次關係
包含訊息種類
包含訊息實例
續接屬性
封閉續接屬性
時間部分
時間
全序於...
三分法
使用
(結合)價
人造物版本
Type restrictions
subList(序列, 序列)
Axioms (2)
- if list1 是 list2 的 次序列,
- then for all item holds: if item 是 list1 的 一 成員, then item 是 list2 的 一 成員
.
(=>
(subList ?LIST1 ?LIST2)
(forall
(?ITEM)
(=>
(inList ?ITEM ?LIST1)
(inList ?ITEM ?LIST2))))
- if list1 是 list2 的 次序列,
- then there exists number3 so that for all item holds: if item 是 list1 的 一 成員, then there exist number1,number2 so that "list1 的 第二 元素" 等於 item and "list2 的 第二 元素" 等於 item and number2 等於 "(number1+number3)"
.
(=>
(subList ?LIST1 ?LIST2)
(exists
(?NUMBER3)
(forall
(?ITEM)
(=>
(inList ?ITEM ?LIST1)
(exists
(?NUMBER1 ?NUMBER2)
(and
(equal
(ListOrderFn ?LIST1 ?NUMBER1)
?ITEM)
(equal
(ListOrderFn ?LIST2 ?NUMBER2)
?ITEM)
(equal
?NUMBER2
(AdditionFn ?NUMBER1 ?NUMBER3))))))))