Revision ad13f303891362cc4ea345dea1b57dc70f3bac62 authored by Christian Doczkal on 21 February 2023, 16:17:11 UTC, committed by Pierre-Yves Strub on 21 February 2023, 16:33:42 UTC
1 parent a347ecb
Raw File
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