https://github.com/EasyCrypt/easycrypt
Revision d6e9a3cd9684f36fa3e50d4a5f6ae7483c772f60 authored by Cécile BARITEL-RUET on 15 June 2017, 08:21:56 UTC, committed by Pierre-Yves Strub on 15 June 2017, 08:21:56 UTC
Extension to `transitivity` that allows to construct the intermediate
program via pattern matching and back-references.
1 parent b1b1a1e
Raw File
Tip revision: d6e9a3cd9684f36fa3e50d4a5f6ae7483c772f60 authored by Cécile BARITEL-RUET on 15 June 2017, 08:21:56 UTC
New tactic: `replace`.
Tip revision: d6e9a3c
ecCoreHiPhl.mli
(* --------------------------------------------------------------------
 * Copyright (c) - 2012--2016 - IMDEA Software Institute
 * Copyright (c) - 2012--2017 - Inria
 *
 * Distributed under the terms of the CeCILL-C-V1 license
 * -------------------------------------------------------------------- *)

(* -------------------------------------------------------------------- *)
open EcParsetree
open EcTypes
open EcModules
open EcFol
open EcLogic

(* -------------------------------------------------------------------- *)
val process_phl_form     : ty -> goal -> pformula -> form
val process_phl_formula  : goal -> pformula -> form
val process_phl_exp      : bool option -> pexpr -> ty option -> goal -> expr

val process_prhl_form    : ty -> goal -> pformula -> form
val process_prhl_formula : goal -> pformula -> form
val process_prhl_post    : goal -> pformula -> form

val process_prhl_stmt    : bool -> goal -> pstmt -> stmt

back to top