https://github.com/EasyCrypt/easycrypt
Revision 6df81b68bb7fb2010d10043e5c11e4401cf56d37 authored by Benjamin Gregoire on 01 April 2014, 07:58:40 UTC, committed by Benjamin Gregoire on 01 April 2014, 07:58:40 UTC
1 parent e43821c
Raw File
Tip revision: 6df81b68bb7fb2010d10043e5c11e4401cf56d37 authored by Benjamin Gregoire on 01 April 2014, 07:58:40 UTC
add product of two and 3 sets
Tip revision: 6df81b6
ecAstlogic.mli
(* -------------------------------------------------------------------- *)
type at_pos = 
  | At_last
  | At_pos of int list
  | At_empty

(* -------------------------------------------------------------------- *)
type ('inv, 's) helper =
  | Helper_inv   of 'inv
  | Helper_eager of 's

type ('p, 'bad) g_inv =
  | Inv_global of 'p
  | Inv_upto   of 'bad
back to top