Record bar := { baz : nat; def := 0; baz' : forall x, x = baz \/ x = def }. End bla.
End Univ.
Set Primitive Projections. Unset Elimination Schemes. SetImplicitArguments.
Check nat.
Inductive X (U:Type) := { k : nat; a: k = k -> X U; b : let x := a eq_refl in X U }.
Parameter x:X nat. Check (a x : forall _ : @eq nat (k x) (k x), X nat). Check (b x : X nat).
Inductive Y := { next : option Y }.
Check _.(next) : option Y. Lemma eta_ind (y : Y) : y = Build_Y y.(next). Proof. Fail reflexivity. Abort.
Inductive Fdef := { Fa : nat ; Fb := Fa; Fc : Fdef }.
Fail Scheme Fdef_rec := Induction for Fdef Sort Prop.
(* Rules for parsing and printing of primitive projections and their eta expansions. If r : R A where R is a primitive record with implicit parameter A. If p : forall {A} (r : R A) {A : Set}, list (A * B).
*)
Record R {A : Type} := { p : forall {X : Set}, A * X }. Arguments R : clear implicits.
Record R' {A : Type} := { p' : forall X : Set, A * X }. Arguments R' : clear implicits.
Unset Printing All.
Parameter r : R nat.
Check (r.(p)). Set Printing Projections. Check (r.(p)). Unset Printing Projections. Set Printing All. Check (r.(p)). Unset Printing All.
(* Check (r.(p)). Elaborates to a primitive application, X arg implicit. Of type nat * ?ex No Printing All: p r Set Printing Projections.: r.(p) Printing All: r.(@p) ?ex
*)
Check p r. Set Printing Projections. Check p r. Unset Printing Projections. Set Printing All. Check p r. Unset Printing All.
Check p r (X:=nat). Set Printing Projections. Check p r (X:=nat). Unset Printing Projections. Set Printing All. Check p r (X:=nat). Unset Printing All.
(* Same elaboration, printing for p r *)
(** Explicit version of the primitive projection, under applied w.r.t implicit arguments
can be printed only using projection notation. r.(@p) *) Check r.(@p _). Set Printing Projections. Check r.(@p _). Unset Printing Projections. Set Printing All. Check r.(@p _). Unset Printing All.
(** Explicit version of the primitive projection, applied to its implicit arguments
can be printed using application notation r.(p), r.(@p) in fully explicit form *) Check r.(@p _) nat. Set Printing Projections. Check r.(@p _) nat. Unset Printing Projections. Set Printing All. Check r.(@p _) nat. Unset Printing All.
Parameter r' : R' nat.
Check (r'.(p')). Set Printing Projections. Check (r'.(p')). Unset Printing Projections. Set Printing All. Check (r'.(p')). Unset Printing All.
(* Check (r'.(p')). Elaborates to a primitive application, X arg explicit. Of type forall X : Set, nat * X No Printing All: p' r' Set Printing Projections.: r'.(p') Printing All: r'.(@p')
*)
Check p' r'. Set Printing Projections. Check p' r'. Unset Printing Projections. Set Printing All. Check p' r'. Unset Printing All.
(* Same elaboration, printing for p r *)
(** Explicit version of the primitive projection, under applied w.r.t implicit arguments
can be printed only using projection notation. r.(@p) *) Check r'.(@p' _). Set Printing Projections. Check r'.(@p' _). Unset Printing Projections. Set Printing All. Check r'.(@p' _). Unset Printing All.
(** Explicit version of the primitive projection, applied to its implicit arguments
can be printed only using projection notation r.(p), r.(@p) in fully explicit form *) Check p' r' nat. Set Printing Projections. Check p' r' nat. Unset Printing Projections. Set Printing All. Check p' r' nat. Unset Printing All.
Check (@p' nat). Check p'. Set Printing All.
Check (@p' nat). Check p'. Unset Printing All.
Record wrap (A : Type) := { unwrap : A; unwrap2 : A }.
Definition term (x : wrap nat) := x.(unwrap). Definition term' (x : wrap nat) := let f := (@unwrap2 nat) in f x.
Require Corelib.extraction.Extraction.
Recursive Extraction term term'.
Extraction TestCompile term term'. (*Unset Printing Primitive Projection Parameters.*)
(* Primitive projections in the presence of let-ins (was not failing in beta3)*)
Set Primitive Projections.
Record s (x:nat) (y:=S x) := {c:=x; d:x=c}. Lemma f : 0=1. Proof.
Fail apply d. (* split. reflexivity. Qed.
*) Abort.
(* Primitive projection match compilation *)
Set Primitive Projections.
Record prod (A B : Type) := pair { fst : A ; snd : B }. Arguments pair {_ _} _ _.
Definition snd' := @snd.
(* a match which is just a projection doesn't produce a bunch of letins *) Goal True. assert (v : prod nat bool) by admit.
let unfolded_snd := eval cbv beta delta [snd' snd] in (snd' v) in let matched_snd := constr:(let 'pair _ x := v in x) in
constr_eq unfolded_snd matched_snd.
Abort.
Fixpoint split_at {A} (l : list A) (n : nat) : prod (list A) (list A) := match n with
| 0 => pair nil l
| S n => match l with
| nil => pair nil nil
| cons x l => let 'pair l1 l2 := split_at l n in pair (cons x l1) l2 end end.
SectionRepeat.
Variable A : Type. Fixpointrepeat (x : A) (n: nat ) := match n with
| O => nil
| S k => cons x (repeat x k) end.
EndRepeat.
TimeEval vm_compute in split_at (repeat 0 20) 10. (* Takes 0s *) TimeEval vm_compute in split_at (repeat 0 40) 20. (* Takes 0.001s *)
Timeout 1 TimeEval vm_compute in split_at (repeat 0 60) 30. (* Used to take 60s, now takes 0.001s *)
(* [unfold] tactic *) ModuleUnfold.
Record rec (P: Prop) := REC { v: unit }. Set Printing All. Set Printing Unfolded Projection AsMatch.
(* Testing that [unfold] can unfold compatibility constants. *) Goalforall r: rec True, @v True r = tt. Proof. intros.
lazymatch goalwith
| |- context C [@v _ ?r] => (* Carefully construct a term that definitely contains the compatibility constant. *) let t := constr:(@v True) in let g := context C [t r] in change g end.
progress unfold v. Abort. EndUnfold.
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.