例如
Record posreal : Type := mkposreal {pos :> R; cond_pos : 0 < pos}.
“:&gt;”是什么意思? 我希望这不是重复,但很难找到符号。
答案 0 :(得分:7)
在这种特殊情况下,它会将posreal
记录中的强制插入其字段pos
。这意味着在大多数情况下,您可以posreal
使用R
。
尝试:
Definition idR (x : R) := x.
Variable (r : posreal).
Compute (idR r).
请参阅https://coq.inria.fr/refman/Reference-Manual021.html#Coercions-and-records