https://github.com/EasyCrypt/easycrypt
Raw File
Tip revision: 5bab2b519c5df53f0ddd973f78110d8c681b9611 authored by Cameron Low on 06 February 2023, 14:43:04 UTC
Bug fix: created too many fresh names
Tip revision: 5bab2b5
ecSearch.mli
(* -------------------------------------------------------------------- *)
open EcPath
open EcFol
open EcTyping

(* -------------------------------------------------------------------- *)

type pattern = (ptnmap * EcUnify.unienv) * form

type search = [
  | `ByPath    of Sp.t
  | `ByPattern of pattern
  | `ByOr      of search list
]

type search_result =
  (path * [`Axiom of EcDecl.axiom | `Schema of EcDecl.ax_schema]) list

val search : EcEnv.env -> search list -> search_result

val sort : Sp.t -> search_result -> search_result
back to top