Skip to content
Snippets Groups Projects

Jonas/more polymorphism

Merged Jonas Kastberg requested to merge jonas/more_polymorphism into master
1 unresolved thread
1 file
+ 8
1
Compare changes
  • Side-by-side
  • Inline
From stdpp Require Import base tactics.
From stdpp Require Import base tactics telescopes.
From actris.logrel Require Import model.
Set Default Proof Using "Type".
@@ -111,7 +111,14 @@ Proof.
rewrite IH. done.
Qed.
Fixpoint ktele_to_tele {Σ} (kt : ktele Σ) : tele :=
match kt with
| KTeleO => TeleO
| KTeleS b => TeleS (λ x, ktele_to_tele (b x))
end.
(*
(** We can define the identity function and composition of the [-t>] function *)
(* space. *)
Definition ktele_fun_id {Σ} {kt : ktele Σ} : kt -k> kt := ktele_bind id.
Loading