Revision 4334a9ab20913a8d162bfe9e3af4ed6e44fd2f84 authored by Benjamin Gregoire on 08 November 2022, 07:56:14 UTC, committed by Benjamin Gregoire on 08 November 2022, 07:56:14 UTC
2 parent s 4d742dd + 2b54cca
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