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

« back to all changes in this revision

Viewing changes to contrib/firstorder/rules.mli

  • 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
(************************************************************************)
 
2
(*  v      *   The Coq Proof Assistant  /  The Coq Development Team     *)
 
3
(* <O___,, * CNRS-Ecole Polytechnique-INRIA Futurs-Universite Paris Sud *)
 
4
(*   \VV/  **************************************************************)
 
5
(*    //   *      This file is distributed under the terms of the       *)
 
6
(*         *       GNU Lesser General Public License Version 2.1        *)
 
7
(************************************************************************)
 
8
 
 
9
(* $Id: rules.mli 6141 2004-09-27 14:55:34Z corbinea $ *)
 
10
 
 
11
open Term
 
12
open Tacmach
 
13
open Names
 
14
open Libnames
 
15
 
 
16
type seqtac= (Sequent.t -> tactic) -> Sequent.t -> tactic
 
17
 
 
18
type lseqtac= global_reference -> seqtac
 
19
 
 
20
type 'a with_backtracking = tactic -> 'a
 
21
 
 
22
val wrap : int -> bool -> seqtac
 
23
 
 
24
val id_of_global: global_reference -> identifier
 
25
 
 
26
val clear_global: global_reference -> tactic
 
27
 
 
28
val axiom_tac : constr -> Sequent.t -> tactic
 
29
 
 
30
val ll_atom_tac : constr -> lseqtac with_backtracking
 
31
 
 
32
val and_tac : seqtac with_backtracking
 
33
 
 
34
val or_tac : seqtac with_backtracking
 
35
 
 
36
val arrow_tac : seqtac with_backtracking
 
37
 
 
38
val left_and_tac : inductive -> lseqtac with_backtracking
 
39
 
 
40
val left_or_tac : inductive -> lseqtac with_backtracking
 
41
 
 
42
val left_false_tac : global_reference -> tactic
 
43
 
 
44
val ll_ind_tac : inductive -> constr list -> lseqtac with_backtracking
 
45
 
 
46
val ll_arrow_tac : constr -> constr -> constr -> lseqtac with_backtracking
 
47
 
 
48
val forall_tac : seqtac with_backtracking
 
49
 
 
50
val left_exists_tac : inductive -> lseqtac with_backtracking
 
51
 
 
52
val ll_forall_tac : types -> lseqtac with_backtracking 
 
53
 
 
54
val normalize_evaluables : tactic