]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/tex_cic_textual_parser/texCicTextualParser.mly
Debugging stuff removed.
[helm.git] / helm / ocaml / tex_cic_textual_parser / texCicTextualParser.mly
1 /* Copyright (C) 2000, 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://cs.unibo.it/helm/.
24  */
25
26 %{
27  open Cic;;
28  module U = UriManager;;
29
30  exception InvalidSuffix of string;;
31  exception InductiveTypeURIExpected;;
32  exception UnknownIdentifier of string;;
33  exception ExplicitNamedSubstitutionAppliedToRel;;
34  exception TheLeftHandSideOfAnExplicitNamedSubstitutionMustBeAVariable;;
35  
36  (* merge removing duplicates of two lists free of duplicates *)
37  let union dom1 dom2 =
38   let rec filter =
39    function
40       [] -> []
41     | he::tl ->
42        if List.mem he dom1 then filter tl else he::(filter tl)
43   in
44    dom1 @ (filter dom2)
45  ;;
46
47  let get_index_in_list e =
48   let rec aux i =
49    function
50       [] -> raise Not_found
51     | (Some he)::_ when he = e -> i
52     | _::tl -> aux (i+1) tl
53   in
54    aux 1
55  ;;
56
57  (* Returns the first meta whose number is above the *)
58  (* number of the higher meta.                       *)
59  (*CSC: cut&pasted from proofEngine.ml *)
60  let new_meta () =
61   let rec aux =
62    function
63       None,[] -> 1
64     | Some n,[] -> n
65     | None,(n,_,_)::tl -> aux (Some n,tl)
66     | Some m,(n,_,_)::tl -> if n > m then aux (Some n,tl) else aux (Some m,tl)
67   in
68    1 + aux (None,!TexCicTextualParser0.metasenv)
69  ;;
70
71  (* identity_relocation_list_for_metavariable i canonical_context         *)
72  (* returns the identity relocation list, which is the list [1 ; ... ; n] *)
73  (* where n = List.length [canonical_context]                             *)
74  (*CSC: ma mi basta la lunghezza del contesto canonico!!!*)
75  (*CSC: cut&pasted from proofEngine.ml *)
76  let identity_relocation_list_for_metavariable canonical_context =
77   let canonical_context_length = List.length canonical_context in
78    let rec aux =
79     function
80        (_,[]) -> []
81      | (n,None::tl) -> None::(aux ((n+1),tl))
82      | (n,_::tl) -> (Some (Cic.Rel n))::(aux ((n+1),tl))
83    in
84     aux (1,canonical_context)
85  ;;
86
87  let deoptionize_exp_named_subst =
88   function
89      None -> [], (function _ -> [])
90    | Some (dom,mk_exp_named_subst) -> dom,mk_exp_named_subst
91  ;;
92
93  let term_of_con_uri uri exp_named_subst =
94   Const (uri,exp_named_subst)
95  ;;
96
97  let term_of_var_uri uri exp_named_subst =
98   Var (uri,exp_named_subst)
99  ;;
100
101  let term_of_indty_uri (uri,tyno) exp_named_subst =
102   MutInd (uri, tyno, exp_named_subst)
103  ;;
104
105  let term_of_indcon_uri (uri,tyno,consno) exp_named_subst =
106   MutConstruct (uri, tyno, consno, exp_named_subst)
107  ;;
108
109  let term_of_uri uri =
110   match uri with
111      CicTextualParser0.ConUri uri ->
112       term_of_con_uri uri
113    | CicTextualParser0.VarUri uri ->
114       term_of_var_uri uri
115    | CicTextualParser0.IndTyUri (uri,tyno) ->
116       term_of_indty_uri (uri,tyno) 
117    | CicTextualParser0.IndConUri (uri,tyno,consno) ->
118       term_of_indcon_uri (uri,tyno,consno)
119  ;;
120
121  let var_uri_of_id id interp =
122   let module CTP0 = CicTextualParser0 in
123    match interp (CicTextualParser0.Id id) with
124       None -> raise (UnknownIdentifier id)
125     | Some (CTP0.Uri (CTP0.VarUri uri)) -> uri
126     | Some _ -> raise TheLeftHandSideOfAnExplicitNamedSubstitutionMustBeAVariable
127  ;;
128
129  let indty_uri_of_id id interp =
130   let module CTP0 = CicTextualParser0 in
131    match interp (CicTextualParser0.Id id) with
132       None -> raise (UnknownIdentifier id)
133     | Some (CTP0.Uri (CTP0.IndTyUri (uri,tyno))) -> (uri,tyno)
134     | Some _ -> raise InductiveTypeURIExpected
135  ;;
136
137  let mk_implicit () =
138   let newmeta = new_meta () in
139    let new_canonical_context = [] in
140     let irl =
141      identity_relocation_list_for_metavariable new_canonical_context
142     in
143      TexCicTextualParser0.metasenv :=
144       [newmeta, new_canonical_context, Sort Type ;
145        newmeta+1, new_canonical_context, Meta (newmeta,irl);
146        newmeta+2, new_canonical_context, Meta (newmeta+1,irl)
147       ] @ !TexCicTextualParser0.metasenv ;
148      [], function _ -> Meta (newmeta+2,irl)
149  ;;
150 %}
151 %token <string> ID
152 %token <int> META
153 %token <int> NUM
154 %token <int> RNUM
155 %token <UriManager.uri> CONURI
156 %token <UriManager.uri> VARURI
157 %token <UriManager.uri * int> INDTYURI
158 %token <UriManager.uri * int * int> INDCONURI
159 %token LPAREN RPAREN PROD LAMBDA COLON DOT SET PROP TYPE CAST IMPLICIT NONE
160 %token LETIN FIX COFIX SEMICOLON LCURLY RCURLY CASE ARROW LBRACKET RBRACKET EOF
161 %token DOLLAR
162 %token RPLUS RMINUS RTIMES RDIV
163 %token PLUS MINUS TIMES EQT EQ NEQT
164 %right ARROW
165 %nonassoc EQ EQT NEQT
166 %left PLUS MINUS RPLUS RMINUS
167 %left TIMES RTIMES RDIV
168 %start main
169 %type <CicTextualParser0.interpretation_domain_item list * (CicTextualParser0.interpretation -> Cic.term)> main
170 %%
171 main:
172  | EOF { raise CicTextualParser0.Eof } /* FG: was never raised */
173  | DOLLAR DOLLAR EOF {raise CicTextualParser0.Eof }
174  | DOLLAR DOLLAR DOLLAR DOLLAR EOF {raise CicTextualParser0.Eof }
175  | expr EOF { $1 }
176  | DOLLAR expr DOLLAR EOF { $2 }
177  | DOLLAR DOLLAR expr DOLLAR DOLLAR EOF { $3 }
178  | expr SEMICOLON { $1 } /*  FG: to read several terms in a row
179                           *  Do we need to clear some static variables? 
180                           */
181 ;
182 expr2:
183  | RNUM
184    { [], function interp ->
185       let rec cic_real_of_real =
186        function
187           0 ->
188            Cic.Const
189             (UriManager.uri_of_string
190               "cic:/Coq/Reals/Rdefinitions/R0.con",[])
191         | 1 ->
192            Cic.Const
193             (UriManager.uri_of_string "cic:/Coq/Reals/Rdefinitions/R1.con",[])
194         | n ->
195           Cic.Appl
196            [ Cic.Const
197                (UriManager.uri_of_string
198                   "cic:/Coq/Reals/Rdefinitions/Rplus.con",[]) ;
199              Cic.Const (UriManager.uri_of_string
200               "cic:/Coq/Reals/Rdefinitions/R1.con",[]);
201              cic_real_of_real (n - 1)
202            ]
203       in
204        cic_real_of_real $1
205    }
206  | NUM
207    { [], function interp ->
208       let rec cic_int_of_int =
209        function
210           0 ->
211            Cic.MutConstruct
212             (UriManager.uri_of_string "cic:/Coq/Init/Datatypes/nat.ind",
213              0,1,[])
214         | n ->
215           Cic.Appl
216            [ Cic.MutConstruct
217               (UriManager.uri_of_string "cic:/Coq/Init/Datatypes/nat.ind",
218                0,2,[]) ;
219              cic_int_of_int (n - 1)
220            ]
221       in
222        cic_int_of_int $1
223    }
224  | expr2 RPLUS expr2
225    { let dom1,mk_expr1 = $1 in
226      let dom2,mk_expr2 = $3 in
227       let dom = union dom1 dom2 in
228        dom, function interp ->
229         Cic.Appl
230          [Cic.Const
231            (UriManager.uri_of_string
232               "cic:/Coq/Reals/Rdefinitions/Rplus.con",[]) ;
233           (mk_expr1 interp) ;
234           (mk_expr2 interp)
235          ]
236    }
237  | expr2 RMINUS expr2
238    { let dom1,mk_expr1 = $1 in
239      let dom2,mk_expr2 = $3 in
240       let dom = union dom1 dom2 in
241        dom, function interp ->
242         Cic.Appl
243          [Cic.Const
244            (UriManager.uri_of_string
245               "cic:/Coq/Reals/Rdefinitions/Rminus.con",[]) ;
246           (mk_expr1 interp) ;
247           (mk_expr2 interp)
248          ]
249    }
250  | expr2 RTIMES expr2
251    { let dom1,mk_expr1 = $1 in
252      let dom2,mk_expr2 = $3 in
253       let dom = union dom1 dom2 in
254        dom, function interp ->
255         Cic.Appl
256          [Cic.Const
257            (UriManager.uri_of_string
258               "cic:/Coq/Reals/Rdefinitions/Rmult.con",[]) ;
259           (mk_expr1 interp) ;
260           (mk_expr2 interp)
261          ]
262    }
263  | expr2 RDIV expr2
264    { let dom1,mk_expr1 = $1 in
265      let dom2,mk_expr2 = $3 in
266       let dom = union dom1 dom2 in
267        dom, function interp ->
268         Cic.Appl
269          [Cic.Const
270            (UriManager.uri_of_string
271               "cic:/Coq/Reals/Rdefinitions/Rdiv.con",[]) ;
272           (mk_expr1 interp) ;
273           (mk_expr2 interp)
274          ]
275    }
276  | expr2 PLUS expr2
277    { let dom1,mk_expr1 = $1 in
278      let dom2,mk_expr2 = $3 in
279       let dom = union dom1 dom2 in
280        dom, function interp ->
281         Cic.Appl
282          [Cic.Const
283            (UriManager.uri_of_string "cic:/Coq/Init/Peano/plus.con",[]) ;
284           (mk_expr1 interp) ;
285           (mk_expr2 interp)
286          ]
287    }
288  | expr2 MINUS expr2
289    { let dom1,mk_expr1 = $1 in
290      let dom2,mk_expr2 = $3 in
291       let dom = union dom1 dom2 in
292        dom, function interp ->
293         Cic.Appl
294          [Cic.Const
295            (UriManager.uri_of_string "cic:/Coq/Arith/Minus/minus.con",[]) ;
296           (mk_expr1 interp) ;
297           (mk_expr2 interp)
298          ]
299    }
300  | expr2 TIMES expr2
301    { let dom1,mk_expr1 = $1 in
302      let dom2,mk_expr2 = $3 in
303       let dom = union dom1 dom2 in
304        dom, function interp ->
305         Cic.Appl
306          [Cic.Const
307            (UriManager.uri_of_string "cic:/Coq/Init/Peano/mult.con",[]) ;
308           (mk_expr1 interp) ;
309           (mk_expr2 interp)
310          ]
311    }
312  | expr2 EQT expr2
313    { let dom1,mk_expr1 = $1 in
314      let dom2,mk_expr2 = $3 in
315      let dom3,mk_expr3 = mk_implicit () in
316       let dom = union dom1 (union dom2 dom3) in
317        dom, function interp ->
318         Cic.Appl
319          [Cic.MutInd
320            (UriManager.uri_of_string "cic:/Coq/Init/Logic_Type/eqT.ind",0,[]) ;
321           (mk_expr3 interp) ;
322           (mk_expr1 interp) ;
323           (mk_expr2 interp)
324          ]
325    }
326  | expr2 NEQT expr2
327    { let dom1,mk_expr1 = $1 in
328      let dom2,mk_expr2 = $3 in
329      let dom3,mk_expr3 = mk_implicit () in
330       let dom = union dom1 (union dom2 dom3) in
331        dom, function interp ->
332         Cic.Appl [
333          Cic.Const (UriManager.uri_of_string "cic:/Coq/Init/Logic/not.con",[]);
334          Cic.Appl
335           [Cic.MutInd
336             (UriManager.uri_of_string "cic:/Coq/Init/Logic_Type/eqT.ind",0,[]) ;
337            (mk_expr3 interp) ;
338            (mk_expr1 interp) ;
339            (mk_expr2 interp)
340           ]]
341    }
342  | expr2 EQ expr2
343    { let dom1,mk_expr1 = $1 in
344      let dom2,mk_expr2 = $3 in
345      let dom3,mk_expr3 = mk_implicit () in
346       let dom = union dom1 (union dom2 dom3) in
347        dom, function interp ->
348         Cic.Appl
349          [Cic.MutInd
350            (UriManager.uri_of_string "cic:/Coq/Init/Logic/eq.ind",0,[]) ;
351           (mk_expr3 interp) ;
352           (mk_expr1 interp) ;
353           (mk_expr2 interp)
354          ]
355    }
356  | CONURI exp_named_subst
357    { let dom,mk_exp_named_subst = deoptionize_exp_named_subst $2 in
358       dom, function interp -> term_of_con_uri $1 (mk_exp_named_subst interp)
359    }
360  | VARURI exp_named_subst
361    { let dom,mk_exp_named_subst = deoptionize_exp_named_subst $2 in
362       dom, function interp -> term_of_var_uri $1 (mk_exp_named_subst interp)
363    }
364  | INDTYURI exp_named_subst
365    { let dom,mk_exp_named_subst = deoptionize_exp_named_subst $2 in
366       dom, function interp -> term_of_indty_uri $1 (mk_exp_named_subst interp)
367    }
368  | INDCONURI exp_named_subst
369    { let dom,mk_exp_named_subst = deoptionize_exp_named_subst $2 in
370       dom, function interp -> term_of_indcon_uri $1 (mk_exp_named_subst interp)
371    }
372  | ID exp_named_subst
373    { try
374       let res =
375        Rel (get_index_in_list (Name $1) !TexCicTextualParser0.binders)
376       in
377        (match $2 with
378            None -> ([], function _ -> res)
379          | Some _ -> raise (ExplicitNamedSubstitutionAppliedToRel)
380        )
381      with
382       Not_found ->
383        let dom1,mk_exp_named_subst = deoptionize_exp_named_subst $2 in
384         let dom = union dom1 [CicTextualParser0.Id $1] in
385          dom,
386           function interp ->
387            match interp (CicTextualParser0.Id $1) with
388               None  -> raise (UnknownIdentifier $1)
389             | Some (CicTextualParser0.Uri uri) ->
390                term_of_uri uri (mk_exp_named_subst interp)
391             | Some CicTextualParser0.Implicit ->
392                (*CSC: not very clean; to maximize code reusage *)
393                snd (mk_implicit ()) ""
394             | Some (CicTextualParser0.Term mk_term) ->
395                (mk_term interp)
396    }
397  | CASE LPAREN expr COLON INDTYURI SEMICOLON expr RPAREN LCURLY branches RCURLY
398     { let dom1,mk_expr1 = $3 in
399       let dom2,mk_expr2 = $7 in
400       let dom3,mk_expr3 = $10 in
401        let dom = union dom1 (union dom2 dom3) in
402         dom,
403         function interp ->
404          MutCase
405           (fst $5,snd $5,(mk_expr2 interp),(mk_expr1 interp),(mk_expr3 interp))
406     }
407  | CASE LPAREN expr COLON ID SEMICOLON expr RPAREN LCURLY branches RCURLY
408     { let dom1,mk_expr1 = $3 in
409       let dom2,mk_expr2 = $7 in
410       let dom3,mk_expr3 = $10 in
411        let dom =
412         union [CicTextualParser0.Id $5] (union dom1 (union dom2 dom3))
413        in
414         dom,
415         function interp ->
416          let uri,typeno = indty_uri_of_id $5 interp in
417           MutCase
418            (uri,typeno,(mk_expr2 interp),(mk_expr1 interp),
419              (mk_expr3 interp))
420     }
421  | fixheader LCURLY exprseplist RCURLY
422     { let dom1,foo,ids_and_indexes,mk_types = $1 in
423       let dom2,mk_exprseplist = $3 in
424        let dom = union dom1 dom2 in
425         for i = 1 to List.length ids_and_indexes do
426          TexCicTextualParser0.binders := List.tl !TexCicTextualParser0.binders
427         done ;
428         dom,
429          function interp ->
430           let types = mk_types interp in
431           let fixfunsbodies = (mk_exprseplist interp) in
432            let idx =
433             let rec find idx =
434              function
435                 [] -> raise Not_found
436               | (name,_)::_  when name = foo -> idx
437               | _::tl -> find (idx+1) tl
438             in
439              find 0 ids_and_indexes
440            in
441             let fixfuns =
442              List.map2 (fun ((name,recindex),ty) bo -> (name,recindex,ty,bo))
443               (List.combine ids_and_indexes types) fixfunsbodies
444             in
445              Fix (idx,fixfuns)
446     }
447  | cofixheader LCURLY exprseplist RCURLY
448     { let dom1,foo,ids,mk_types = $1 in
449       let dom2,mk_exprseplist = $3 in
450        let dom = union dom1 dom2 in
451         dom,
452          function interp ->
453           let types = mk_types interp in
454           let fixfunsbodies = (mk_exprseplist interp) in
455            let idx =
456             let rec find idx =
457              function
458                 [] -> raise Not_found
459               | name::_  when name = foo -> idx
460               | _::tl -> find (idx+1) tl
461             in
462              find 0 ids
463            in
464             let fixfuns =
465              List.map2 (fun (name,ty) bo -> (name,ty,bo))
466               (List.combine ids types) fixfunsbodies
467             in
468              for i = 1 to List.length fixfuns do
469               TexCicTextualParser0.binders :=
470                List.tl !TexCicTextualParser0.binders
471              done ;
472              CoFix (idx,fixfuns)
473     }
474  | IMPLICIT
475     { mk_implicit () }
476  | SET  { [], function _ -> Sort Set }
477  | PROP { [], function _ -> Sort Prop }
478  | TYPE { [], function _ -> Sort Type }
479  | LPAREN expr CAST expr RPAREN
480     { let dom1,mk_expr1 = $2 in
481       let dom2,mk_expr2 = $4 in
482        let dom = union dom1 dom2 in
483         dom, function interp -> Cast ((mk_expr1 interp),(mk_expr2 interp))
484     }
485  | META LBRACKET substitutionlist RBRACKET
486     { let dom,mk_substitutionlist = $3 in
487        dom, function interp -> Meta ($1, mk_substitutionlist interp)
488     } 
489  | LPAREN expr exprlist RPAREN
490     { let length,dom2,mk_exprlist = $3 in
491        match length with
492           0 -> $2
493         | _ ->
494           let dom1,mk_expr1 = $2 in
495            let dom = union dom1 dom2 in
496             dom,
497              function interp ->
498               Appl ((mk_expr1 interp)::(mk_exprlist interp))
499     }
500 ;
501 exp_named_subst :
502     { None }
503  | LCURLY named_substs RCURLY
504     { Some $2 }
505 ;
506 named_substs :
507    VARURI LETIN expr2
508     { let dom,mk_expr = $3 in
509        dom, function interp -> [$1, mk_expr interp] }
510  | ID LETIN expr2
511     { let dom1,mk_expr = $3 in
512        let dom = union [CicTextualParser0.Id $1] dom1 in
513         dom, function interp -> [var_uri_of_id $1 interp, mk_expr interp] }
514  | VARURI LETIN expr2 SEMICOLON named_substs
515     { let dom1,mk_expr = $3 in
516       let dom2,mk_named_substs = $5 in
517        let dom = union dom1 dom2 in
518         dom, function interp -> ($1, mk_expr interp)::(mk_named_substs interp)
519     }
520  | ID LETIN expr2 SEMICOLON named_substs
521     { let dom1,mk_expr = $3 in
522       let dom2,mk_named_substs = $5 in
523        let dom = union [CicTextualParser0.Id $1] (union dom1 dom2) in
524         dom,
525          function interp ->
526           (var_uri_of_id $1 interp, mk_expr interp)::(mk_named_substs interp)
527     }
528 ;
529 expr :
530    pihead expr
531     { TexCicTextualParser0.binders := List.tl !TexCicTextualParser0.binders ;
532       let dom1,mk_expr1 = snd $1 in
533       let dom2,mk_expr2 = $2 in
534        let dom = union dom1 dom2 in
535         dom, function interp -> Prod (fst $1, mk_expr1 interp, mk_expr2 interp)
536     }
537  | lambdahead expr
538     { TexCicTextualParser0.binders := List.tl !TexCicTextualParser0.binders ;
539       let dom1,mk_expr1 = snd $1 in
540       let dom2,mk_expr2 = $2 in
541        let dom = union dom1 dom2 in
542         dom,function interp -> Lambda (fst $1, mk_expr1 interp, mk_expr2 interp)
543     }
544  | letinhead expr
545     { TexCicTextualParser0.binders := List.tl !TexCicTextualParser0.binders ;
546       let dom1,mk_expr1 = snd $1 in
547       let dom2,mk_expr2 = $2 in
548        let dom = union dom1 dom2 in
549         dom, function interp -> LetIn (fst $1, mk_expr1 interp, mk_expr2 interp)
550     }
551  | expr2
552     { $1 }
553 ;
554 fixheader:
555    FIX ID LCURLY fixfunsdecl RCURLY
556     { let dom,ids_and_indexes,mk_types = $4 in
557        let bs =
558         List.rev_map (function (name,_) -> Some (Name name)) ids_and_indexes
559        in
560         TexCicTextualParser0.binders := bs@(!TexCicTextualParser0.binders) ;
561         dom, $2, ids_and_indexes, mk_types
562     }
563 ;
564 fixfunsdecl:
565    ID LPAREN NUM RPAREN COLON expr
566     { let dom,mk_expr = $6 in
567        dom, [$1,$3], function interp -> [mk_expr interp]
568     }
569  | ID LPAREN NUM RPAREN COLON expr SEMICOLON fixfunsdecl
570     { let dom1,mk_expr = $6 in
571       let dom2,ids_and_indexes,mk_types = $8 in
572        let dom = union dom1 dom2 in
573         dom, ($1,$3)::ids_and_indexes,
574          function interp -> (mk_expr interp)::(mk_types interp)
575     }
576 ;
577 cofixheader:
578    COFIX ID LCURLY cofixfunsdecl RCURLY
579     { let dom,ids,mk_types = $4 in
580        let bs =
581         List.rev_map (function name -> Some (Name name)) ids
582        in
583         TexCicTextualParser0.binders := bs@(!TexCicTextualParser0.binders) ;
584         dom, $2, ids, mk_types
585     }
586 ;
587 cofixfunsdecl:
588    ID COLON expr
589     { let dom,mk_expr = $3 in
590        dom, [$1], function interp -> [mk_expr interp]
591     }
592  | ID COLON expr SEMICOLON cofixfunsdecl
593     { let dom1,mk_expr = $3 in
594       let dom2,ids,mk_types = $5 in
595        let dom = union dom1 dom2 in
596         dom, $1::ids,
597          function interp -> (mk_expr interp)::(mk_types interp)
598     }
599 ;
600 pihead:
601    PROD ID COLON expr DOT
602     { TexCicTextualParser0.binders :=
603        (Some (Name $2))::!TexCicTextualParser0.binders;
604       let dom,mk_expr = $4 in
605        Cic.Name $2, (dom, function interp -> mk_expr interp)
606     }
607  | expr2 ARROW
608    { TexCicTextualParser0.binders :=
609       (Some Anonymous)::!TexCicTextualParser0.binders ;
610      let dom,mk_expr = $1 in
611       Anonymous, (dom, function interp -> mk_expr interp)
612    }
613  | PROD ID DOT
614     { TexCicTextualParser0.binders :=
615        (Some (Name $2))::!TexCicTextualParser0.binders;
616       let newmeta = new_meta () in
617        let new_canonical_context = [] in
618         let irl =
619          identity_relocation_list_for_metavariable new_canonical_context
620         in
621          TexCicTextualParser0.metasenv :=
622           [newmeta, new_canonical_context, Sort Type ;
623            newmeta+1, new_canonical_context, Meta (newmeta,irl)
624           ] @ !TexCicTextualParser0.metasenv ;
625          Cic.Name $2, ([], function _ -> Meta (newmeta+1,irl))
626     }
627 ;
628 lambdahead:
629    LAMBDA ID COLON expr DOT
630     { TexCicTextualParser0.binders :=
631        (Some (Name $2))::!TexCicTextualParser0.binders;
632       let dom,mk_expr = $4 in
633        Cic.Name $2, (dom, function interp -> mk_expr interp)
634     }
635  | LAMBDA ID DOT
636     { TexCicTextualParser0.binders :=
637        (Some (Name $2))::!TexCicTextualParser0.binders;
638       let newmeta = new_meta () in
639        let new_canonical_context = [] in
640         let irl =
641          identity_relocation_list_for_metavariable new_canonical_context
642         in
643          TexCicTextualParser0.metasenv :=
644           [newmeta, new_canonical_context, Sort Type ;
645            newmeta+1, new_canonical_context, Meta (newmeta,irl)
646           ] @ !TexCicTextualParser0.metasenv ;
647          Cic.Name $2, ([], function _ -> Meta (newmeta+1,irl))
648     }
649 ;
650 letinhead:
651   LAMBDA ID LETIN expr DOT
652    { TexCicTextualParser0.binders :=
653       (Some (Name $2))::!TexCicTextualParser0.binders ;
654      let dom,mk_expr = $4 in
655       Cic.Name $2, (dom, function interp -> mk_expr interp)
656    }
657 ;
658 branches:
659     { [], function _ -> [] }
660  | expr SEMICOLON branches
661     { let dom1,mk_expr = $1 in
662       let dom2,mk_branches = $3 in
663        let dom = union dom1 dom2 in
664         dom, function interp -> (mk_expr interp)::(mk_branches interp)
665     }
666  | expr
667     { let dom,mk_expr = $1 in
668        dom, function interp -> [mk_expr interp]
669     }
670 ;
671 exprlist:
672     
673     { 0, [], function _ -> [] }
674  | expr exprlist
675     { let dom1,mk_expr = $1 in
676       let length,dom2,mk_exprlist = $2 in
677        let dom = union dom1 dom2 in
678         length+1, dom, function interp -> (mk_expr interp)::(mk_exprlist interp)
679     }
680 ;
681 exprseplist:
682    expr
683     { let dom,mk_expr = $1 in
684        dom, function interp -> [mk_expr interp]
685     }
686  | expr SEMICOLON exprseplist
687     { let dom1,mk_expr = $1 in
688       let dom2,mk_exprseplist = $3 in
689        let dom = union dom1 dom2 in
690         dom, function interp -> (mk_expr interp)::(mk_exprseplist interp)
691     }
692 ;
693 substitutionlist:
694     { [], function _ -> [] }
695  | expr SEMICOLON substitutionlist
696     { let dom1,mk_expr = $1 in
697       let dom2,mk_substitutionlist = $3 in
698        let dom = union dom1 dom2 in
699         dom,
700          function interp ->(Some (mk_expr interp))::(mk_substitutionlist interp)
701     }
702  | NONE SEMICOLON substitutionlist
703     { let dom,mk_exprsubstitutionlist = $3 in
704        dom, function interp -> None::(mk_exprsubstitutionlist interp)
705     }