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

« back to all changes in this revision

Viewing changes to interp/implicit_quantifiers.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: implicit_quantifiers.mli 11576 2008-11-10 19:13:15Z msozeau $ i*)
 
10
 
 
11
(*i*)
 
12
open Names
 
13
open Decl_kinds
 
14
open Term
 
15
open Sign
 
16
open Evd
 
17
open Environ
 
18
open Nametab
 
19
open Mod_subst
 
20
open Rawterm
 
21
open Topconstr
 
22
open Util
 
23
open Libnames
 
24
open Typeclasses
 
25
(*i*)
 
26
 
 
27
val ids_of_list : identifier list -> Idset.t
 
28
val destClassApp : constr_expr -> loc * reference * constr_expr list
 
29
val destClassAppExpl : constr_expr -> loc * reference * (constr_expr * explicitation located option) list
 
30
 
 
31
(* Fragile, should be used only for construction a set of identifiers to avoid *)
 
32
 
 
33
val free_vars_of_constr_expr : constr_expr -> ?bound:Idset.t ->
 
34
  identifier list -> identifier list
 
35
 
 
36
val free_vars_of_binders :
 
37
  ?bound:Idset.t -> Names.identifier list -> local_binder list -> Idset.t * Names.identifier list
 
38
 
 
39
(* Returns the free ids in left-to-right order with the location of their first occurence *)
 
40
 
 
41
val free_vars_of_rawconstr : ?bound:Idset.t -> rawconstr -> (Names.identifier * loc) list
 
42
 
 
43
val make_fresh : Names.Idset.t -> Environ.env -> identifier -> identifier
 
44
 
 
45
val implicits_of_rawterm : Rawterm.rawconstr -> (Topconstr.explicitation * (bool * bool)) list
 
46
 
 
47
val combine_params_freevar :
 
48
  Names.Idset.t -> (global_reference * bool) option * (Names.name * Term.constr option * Term.types) ->
 
49
  Topconstr.constr_expr * Names.Idset.t
 
50
 
 
51
val implicit_application : Idset.t -> ?allow_partial:bool ->
 
52
  (Names.Idset.t -> (global_reference * bool) option * (Names.name * Term.constr option * Term.types) ->
 
53
    Topconstr.constr_expr * Names.Idset.t) ->
 
54
  constr_expr -> constr_expr