假设我在B规范中有以下内容:
flower <: FLOWER
age <: AGE
owner <: OWNER
Type <: flower * age
Buyer : owner <-> flower我是否可以创建如下精化:-
flower <: FLOWER
age <: AGE
owner <: OWNER
Type : Owner <-> flower * age
Buyer : owner <-> flower发布于 2017-07-20 15:13:06
不,这是不可能的,因为在细化中,变量的类型必须与规范中的类型相同(如果规范中有一个名称与此处相同的变量)。
https://stackoverflow.com/questions/45180716
复制相似问题