Revision 3c1476b648e95e00b886cd7986bada35064ca44e authored by Alley Stoughton on 17 May 2022, 13:54:38 UTC, committed by Pierre-Yves Strub on 17 May 2022, 14:43:37 UTC
Former printer was using an invalid priority for projections.

Fixes #200
1 parent 24b0ce7
Raw File
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