1 /* Copyright (C) 2000, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://cs.unibo.it/helm/.
26 /* AUTOR: Ferruccio Guidi <fguidi@cs.unibo.it>
38 %token <UriManager.uri> CONURI
39 %token <UriManager.uri> VARURI
40 %token <UriManager.uri * int> INDTYURI
41 %token <UriManager.uri * int * int> INDCONURI
45 %type <CicTextualParser0.interpretation_domain_item -> CicTextualParser0.interpretation_codomain_item option> interp
49 %token MOBJ MSORT MREL OOBJ OSORT OREL UNIV
53 %type <MQGTypes.spec list> specs
56 | CONURI { CicTextualParser0.ConUri $1 }
57 | VARURI { CicTextualParser0.VarUri $1 }
58 | INDTYURI { CicTextualParser0.IndTyUri ((fst $1), (snd $1)) }
59 | INDCONURI { CicTextualParser0.IndConUri ((f $1), (s $1), (t $1)) }
62 | ALIAS ID uri { ($2, CicTextualParser0.Uri $3) }
65 | alias aliases { $1 :: $2 }
69 | aliases { function CicTextualParser0.Id s -> (try Some (List.assoc s $1)
70 with Not_found -> None)
76 | STR qstr { $1 ^ $2 }
79 | STR CM strs { $1 :: $3 }
84 | LC strs RC { List.map U.uri_of_mathql $2 }
87 | LC strs RC { List.map U.sort_of_mathql $2 }
90 | LC strs RC { List.map U.position_of_mathql $2 }
93 | LC strs RC { List.map U.depth_of_mathql $2 }
96 | MOBJ uri_list pos_list depth_list { T.MustObj ($2, $3, $4) }
97 | MSORT sort_list pos_list depth_list { T.MustSort ($2, $3, $4) }
98 | MREL pos_list depth_list { T.MustRel ($2, $3) }
99 | OOBJ uri_list pos_list depth_list { T.OnlyObj ($2, $3, $4) }
100 | OSORT sort_list pos_list depth_list { T.OnlySort ($2, $3, $4) }
101 | OREL pos_list depth_list { T.OnlyRel ($2, $3) }
102 | UNIV pos_list { T.Universe $2 }
105 | spec specs { $1 :: $2 }