https://github.com/EasyCrypt/easycrypt
Revision a8930510fd0be9752d54863407f6df80be453096 authored by Benjamin Gregoire on 17 January 2019, 17:22:08 UTC, committed by Benjamin Gregoire on 17 January 2019, 17:22:08 UTC
1 parent 337a8ab
Raw File
Tip revision: a8930510fd0be9752d54863407f6df80be453096 authored by Benjamin Gregoire on 17 January 2019, 17:22:08 UTC
add missing quantification over memory in async while
Tip revision: a893051
ecLoader.mli
(* --------------------------------------------------------------------
 * Copyright (c) - 2012--2016 - IMDEA Software Institute
 * Copyright (c) - 2012--2018 - Inria
 * Copyright (c) - 2012--2018 - Ecole Polytechnique
 *
 * Distributed under the terms of the CeCILL-C-V1 license
 * -------------------------------------------------------------------- *)

(* -------------------------------------------------------------------- *)
type idx_t
type ecloader

type kind = [`Ec | `EcA]

(* -------------------------------------------------------------------- *)
val create  : unit -> ecloader
val aslist  : ecloader -> ((bool * string) * idx_t) list
val dup     : ecloader -> ecloader
val forsys  : ecloader -> ecloader
val addidir : ?system:bool -> ?recursive:bool -> string -> ecloader -> unit
val locate  : ?onlysys:bool -> string -> ecloader -> (string * kind) option
back to top