Resources
Questions tagged [pvs]
1 questions
0
votes
1 answer
Translate the PVS into Coq
I want to translate the following PVS into Coq:
where type trans has type env -> env -> bool, I write the Coq code as follows:
Definition trans := env -> env -> bool.
Definition dseq (P Q : trans) : trans :=
fun s1 s2 => andb (P s1 s') (Q s'…

Frank Sheng
- 195
- 7