]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/cic_disambiguation/disambiguateChoices.mli
Preparing for 0.5.9 release.
[helm.git] / helm / software / components / cic_disambiguation / disambiguateChoices.mli
1 (* Copyright (C) 2004, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://helm.cs.unibo.it/
24  *)
25
26 open DisambiguateTypes
27
28 (** {2 Choice registration low-level interface} *)
29
30   (** raised by lookup_XXXX below *)
31 exception Choice_not_found of string Lazy.t
32
33   (** register a new number choice *)
34 val add_num_choice: Cic.term codomain_item -> unit
35
36   (** register a new number choice *)
37 val nadd_num_choice: NCic.term codomain_item -> unit
38
39 (** {2 Choices lookup}
40  * for user defined aliases *)
41
42 val lookup_num_choices: unit -> Cic.term codomain_item list
43
44   (** @param dsc description (1st component of codomain_item) *)
45 val lookup_num_by_dsc: string -> Cic.term codomain_item
46
47   (** @param dsc description (1st component of codomain_item) *)
48 val nlookup_num_by_dsc: string -> NCic.term codomain_item
49
50   (** @param symbol symbol as per AST
51    * @param dsc description (1st component of codomain_item)
52    *)
53 val lookup_symbol_by_dsc: 
54   mk_appl: ('term list -> 'term) ->
55   mk_implicit: (bool -> 'term) ->
56   term_of_uri: (UriManager.uri -> 'term) ->
57   term_of_nref: (NReference.reference -> 'term) ->
58   string -> string -> 'term codomain_item
59
60 val cic_lookup_symbol_by_dsc: 
61   string -> string -> Cic.term codomain_item
62
63 val mk_choice:
64   mk_appl: ('term list -> 'term) ->
65   mk_implicit: (bool -> 'term) ->
66   term_of_uri: (UriManager.uri -> 'term) ->
67   term_of_nref: (NReference.reference -> 'term) ->
68   string * CicNotationPt.argument_pattern list *
69   CicNotationPt.cic_appl_pattern ->
70     'term codomain_item
71