https://github.com/EasyCrypt/easycrypt
Raw File
Tip revision: 0ea747e8820cd9b084d76ca576c4406acbc841ab authored by Pierre-Yves Strub on 13 October 2023, 13:06:18 UTC
lambda bindings now take simple variables only
Tip revision: 0ea747e
ecField.mli
(* -------------------------------------------------------------------- *)
open EcRing
open EcBigInt

(* -------------------------------------------------------------------- *)
type fexpr =
| FEc   of c
| FEX   of int
| FEadd of fexpr * fexpr
| FEsub of fexpr * fexpr
| FEmul of fexpr * fexpr
| FEopp of fexpr
| FEinv of fexpr
| FEdiv of fexpr * fexpr
| FEpow of fexpr * zint

type linear = (pexpr * pexpr * (pexpr list))

(* -------------------------------------------------------------------- *)
val fnorm : fexpr -> linear
back to top