~ubuntu-branches/ubuntu/wily/coq-doc/wily

« back to all changes in this revision

Viewing changes to test-suite/output/Cases.out

  • Committer: Bazaar Package Importer
  • Author(s): Stéphane Glondu, Stéphane Glondu, Samuel Mimram
  • Date: 2010-01-07 22:50:39 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100107225039-n3cq82589u0qt0s2
Tags: 8.2pl1-1
[ Stéphane Glondu ]
* New upstream release (Closes: #563669)
  - remove patches
* Packaging overhaul:
  - use git, advertise it in Vcs-* fields of debian/control
  - use debhelper 7 and dh with override
  - use source format 3.0 (quilt)
* debian/control:
  - set Maintainer to d-o-m, set Uploaders to Sam and myself
  - add Homepage field
  - bump Standards-Version to 3.8.3
* Register PDF documentation into doc-base
* Add debian/watch
* Update debian/copyright

[ Samuel Mimram ]
* Change coq-doc's description to mention that it provides documentation in
  pdf format, not postscript, closes: #543545.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
t_rect = 
 
2
fun (P : t -> Type) (f : let x := t in forall x0 : x, P x0 -> P (k x0)) =>
 
3
fix F (t : t) : P t :=
 
4
  match t as t0 return (P t0) with
 
5
  | k _ x0 => f x0 (F x0)
 
6
  end
 
7
     : forall P : t -> Type,
 
8
       (let x := t in forall x0 : x, P x0 -> P (k x0)) -> forall t : t, P t
 
9
proj = 
 
10
fun (x y : nat) (P : nat -> Type) (def : P x) (prf : P y) =>
 
11
match eq_nat_dec x y with
 
12
| left eqprf =>
 
13
    match eqprf in (_ = z) return (P z) with
 
14
    | refl_equal => def
 
15
    end
 
16
| right _ => prf
 
17
end
 
18
     : forall (x y : nat) (P : nat -> Type), P x -> P y -> P y
 
19
 
 
20
Argument scopes are [nat_scope nat_scope _ _ _]
 
21
foo = 
 
22
fix foo (A : Type) (l : list A) {struct l} : option A :=
 
23
  match l with
 
24
  | nil => None
 
25
  | x0 :: nil => Some x0
 
26
  | x0 :: (_ :: _) as l0 => foo A l0
 
27
  end
 
28
     : forall A : Type, list A -> option A
 
29
 
 
30
Argument scopes are [type_scope list_scope]
 
31
foo' = if A 0 then true else false
 
32
     : bool