https://github.com/EasyCrypt/easycrypt
Revision 25c632b5747831539f27254ede3038c96d4fa46b authored by Pierre-Yves Strub on 21 January 2018, 23:32:19 UTC, committed by Pierre-Yves Strub on 21 January 2018, 23:57:32 UTC
Path substitution was not build using the correct old-path
when a theory substitution was in place.

[fix #17361]
1 parent 7cce8c6
Raw File
Tip revision: 25c632b5747831539f27254ede3038c96d4fa46b authored by Pierre-Yves Strub on 21 January 2018, 23:32:19 UTC
Fix bug in theory-cloning renaming
Tip revision: 25c632b
ecWhy3Conv.mli
(* --------------------------------------------------------------------
 * Copyright (c) - 2012--2016 - IMDEA Software Institute
 * Copyright (c) - 2012--2017 - Inria
 *
 * Distributed under the terms of the CeCILL-C-V1 license
 * -------------------------------------------------------------------- *)

(* -------------------------------------------------------------------- *)
open Why3

module Talpha : sig
  type t = Term.vsymbol list * Term.term

  val compare : t -> t -> int
end

module Mta : EcMaps.Map.S with type   key = Talpha.t
module Sta : EcMaps.Set.S with type M.key = Talpha.t
back to top