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

« back to all changes in this revision

Viewing changes to library/decls.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: decls.mli 10841 2008-04-24 07:19:57Z herbelin $ i*)
 
10
 
 
11
open Names
 
12
open Sign
 
13
(*
 
14
open Libnames
 
15
open Term
 
16
open Declarations
 
17
open Entries
 
18
open Indtypes
 
19
open Safe_typing
 
20
open Nametab
 
21
*)
 
22
open Decl_kinds
 
23
 
 
24
(** This module manages non-kernel informations about declarations. It
 
25
    is either non-logical informations or logical informations that
 
26
    have no place to be (yet) in the kernel *)
 
27
 
 
28
(** Registration and access to the table of variable *)
 
29
 
 
30
type variable_data = 
 
31
    dir_path * bool (* opacity *) * Univ.constraints * logical_kind
 
32
 
 
33
val add_variable_data : variable -> variable_data -> unit
 
34
val variable_kind : variable -> logical_kind
 
35
val variable_opacity : variable -> bool
 
36
val variable_constraints : variable -> Univ.constraints
 
37
val variable_exists : variable -> bool
 
38
 
 
39
(** Registration and access to the table of constants *)
 
40
 
 
41
val add_constant_kind : constant -> logical_kind -> unit
 
42
val constant_kind : constant -> logical_kind
 
43
 
 
44
(** Miscellaneous functions *)
 
45
 
 
46
val last_section_hyps : dir_path -> identifier list
 
47
val clear_proofs : named_context -> Environ.named_context_val