Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapt to coq/coq#19985 (template poly has pseudo sort poly) #893

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions serlib/ser_declarations.ml
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,10 @@ type record_info =
[%import: Declarations.record_info]
[@@deriving sexp,yojson,hash,compare]

type template_pseudo_sort_poly =
[%import: Declarations.template_pseudo_sort_poly]
[@@deriving sexp,yojson,hash,compare]

type template_universes =
[%import: Declarations.template_universes]
[@@deriving sexp,yojson,hash,compare]
Expand Down
5 changes: 0 additions & 5 deletions serlib/ser_uGraph.ml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@ module Sorts = Ser_sorts
module Univ = Ser_univ
module Pp = Ser_pp

module Bound = struct
type t = [%import: UGraph.Bound.t]
[@@deriving sexp]
end

type t = [%import: UGraph.t]

let sexp_of_t = Serlib_base.sexp_of_opaque ~typ:"UGraph.t"
Expand Down
7 changes: 0 additions & 7 deletions serlib/ser_uGraph.mli
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,6 @@

open Sexplib

module Bound : sig
type t = UGraph.Bound.t

val sexp_of_t : t -> Sexp.t
val t_of_sexp : Sexp.t -> t
end

type t = UGraph.t

val sexp_of_t : t -> Sexp.t
Expand Down
Loading