https://github.com/EasyCrypt/easycrypt
Raw File
Tip revision: 180d323ca283478521f58c6bff6e0842d21f0d7d authored by Pierre-Yves Strub on 27 January 2020, 13:48:30 UTC
Merge branch 'deploy-extended-tests' into deploy-simpler-xpaths
Tip revision: 180d323
ecPhlLoopTx.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
 * -------------------------------------------------------------------- *)

(* -------------------------------------------------------------------- *)
open EcParsetree
open EcTypes
open EcCoreGoal.FApi

(* -------------------------------------------------------------------- *)
type fission_t    = oside * codepos * (int * (int * int))
type fusion_t     = oside * codepos * (int * (int * int))
type unroll_t     = oside * codepos * bool
type splitwhile_t = pexpr * oside * codepos

val t_fission    : oside -> codepos -> int * (int * int) -> backward
val t_fusion     : oside -> codepos -> int * (int * int) -> backward
val t_unroll     : oside -> codepos -> backward
val t_splitwhile : expr -> oside -> codepos -> backward


(* -------------------------------------------------------------------- *)
val process_unroll_for : oside -> codepos -> backward
val process_fission    : fission_t -> backward
val process_fusion     : fusion_t -> backward
val process_unroll     : unroll_t -> backward
val process_splitwhile : splitwhile_t -> backward
back to top