Skip to content

Commit

Permalink
Merge pull request #139 from SkySkimmer/erelevance
Browse files Browse the repository at this point in the history
Adapt to coq/coq#18938 (EConstr.ERelevance)
  • Loading branch information
ppedrot authored Apr 23, 2024
2 parents d3f4d88 + fe14384 commit d29656d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/coq.ml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ open Proofview.Notations

type tactic = unit Proofview.tactic

let mkArrow x y = mkArrow x Sorts.Relevant y
let mkArrow x y = mkArrow x ERelevance.relevant y
(* The kernel will fix the relevance if needed. Also as an equality
tactic we probably are only called on relevant terms. *)

Expand Down
2 changes: 1 addition & 1 deletion src/coq.mli
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ val mk_letin : string -> EConstr.constr -> EConstr.constr Proofview.tactic

val tclRETYPE : EConstr.constr -> unit Proofview.tactic

val decomp_term : Evd.evar_map -> EConstr.constr -> (EConstr.constr , EConstr.types, EConstr.ESorts.t, EConstr.EInstance.t) Constr.kind_of_term
val decomp_term : Evd.evar_map -> EConstr.constr -> (EConstr.constr , EConstr.types, EConstr.ESorts.t, EConstr.EInstance.t, EConstr.ERelevance.t) Constr.kind_of_term

(** {2 Bindings with Coq' Standard Library} *)

Expand Down

0 comments on commit d29656d

Please sign in to comment.