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

« back to all changes in this revision

Viewing changes to tactics/extraargs.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
(*i $Id: extraargs.mli 12102 2009-04-24 10:48:11Z herbelin $ i*)
 
10
 
 
11
open Tacexpr
 
12
open Term
 
13
open Names
 
14
open Proof_type
 
15
open Topconstr
 
16
open Termops
 
17
open Rawterm
 
18
 
 
19
val rawwit_orient : bool raw_abstract_argument_type
 
20
val wit_orient : bool typed_abstract_argument_type
 
21
val orient : bool Pcoq.Gram.Entry.e
 
22
 
 
23
val occurrences : (int list or_var) Pcoq.Gram.Entry.e
 
24
val rawwit_occurrences : (int list or_var) raw_abstract_argument_type
 
25
val wit_occurrences : (int list) typed_abstract_argument_type
 
26
 
 
27
val rawwit_raw : constr_expr raw_abstract_argument_type
 
28
val wit_raw : (Tacinterp.interp_sign * rawconstr) typed_abstract_argument_type
 
29
val raw : constr_expr Pcoq.Gram.Entry.e
 
30
 
 
31
type 'id gen_place= ('id * hyp_location_flag,unit) location
 
32
 
 
33
type loc_place = identifier Util.located gen_place
 
34
type place = identifier gen_place
 
35
 
 
36
val rawwit_hloc : loc_place raw_abstract_argument_type
 
37
val wit_hloc : place typed_abstract_argument_type
 
38
val hloc : loc_place Pcoq.Gram.Entry.e
 
39
 
 
40
 
 
41
val in_arg_hyp:  (Names.identifier Util.located list option * bool)  Pcoq.Gram.Entry.e
 
42
val rawwit_in_arg_hyp : (Names.identifier Util.located list option * bool) raw_abstract_argument_type
 
43
val wit_in_arg_hyp : (Names.identifier list option * bool) typed_abstract_argument_type
 
44
val raw_in_arg_hyp_to_clause : (Names.identifier Util.located list option * bool) -> Tacticals.clause
 
45
val glob_in_arg_hyp_to_clause :  (Names.identifier list option * bool)  -> Tacticals.clause
 
46
 
 
47
 
 
48
val by_arg_tac : Tacexpr.raw_tactic_expr option Pcoq.Gram.Entry.e
 
49
val rawwit_by_arg_tac :  raw_tactic_expr option raw_abstract_argument_type
 
50
val wit_by_arg_tac : glob_tactic_expr option typed_abstract_argument_type
 
51
 
 
52
 
 
53
 
 
54
(* Spiwack: Primitive for retroknowledge registration *)
 
55
 
 
56
val retroknowledge_field : Retroknowledge.field Pcoq.Gram.Entry.e
 
57
val rawwit_retroknowledge_field :  Retroknowledge.field raw_abstract_argument_type
 
58
val wit_retroknowledge_field : Retroknowledge.field typed_abstract_argument_type