File: bug_18256.v

package info (click to toggle)
coq 8.20.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 44,116 kB
  • sloc: ml: 234,160; sh: 4,301; python: 3,270; ansic: 2,644; makefile: 882; lisp: 172; javascript: 63; xml: 24; sed: 2
file content (27 lines) | stat: -rw-r--r-- 711 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Require Coq.Program.Wf.

Axiom proof_admitted : False.
Tactic Notation "admit" := abstract case proof_admitted.

Inductive PolyType (R: Set): Set :=
  | prt_leading: PolyType R.

Definition poly_deg {R: Set} (p: PolyType R): nat.
Admitted.

Definition RootExtensionType {F: Set} (p: PolyType F) (Hp: p <> p): Set.
Admitted.

Program Fixpoint SplittingExtensionType {K: Set} (p: PolyType K) {measure (poly_deg p)}: Set :=
  match p with
  | prt_leading _ => SplittingExtensionType (_: PolyType (RootExtensionType p _))
  end.
Next Obligation.
Admitted.
Next Obligation.
admit.
Defined. (* anomaly "in Univ.repr: Universe Top.3 undefined." fixed by #18642 *)
Next Obligation.
Admitted.
Next Obligation.
Admitted.