https://github.com/EasyCrypt/easycrypt
Raw File
Tip revision: f6574ffbdd2a21ccf370f965c89d4f3373e51090 authored by François Dupressoir on 16 May 2022, 11:48:54 UTC
make axiomatized operators `nosmt` by default
Tip revision: f6574ff
CoreMap.ec
(* The only purposes of these types and operators are to be bound to
 * the relevant SMT operators. Do not use them directly and use the
 * Map theory instead. *)

type ('a, 'b) map.

op cst ['a 'b] : 'b -> ('a, 'b) map.
op "_.[_]" ['a 'b] : ('a, 'b) map -> 'a -> 'b.
op "_.[_<-_]" ['a 'b] : ('a, 'b) map -> 'a -> 'b -> ('a, 'b) map.
back to top