aboutsummaryrefslogtreecommitdiff
path: root/parsing/termast.ml
blob: edc31f29400d01ee7d62d6e61f5d86a0860fcd17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
(* $Id$ *)

open Pp
open Util
open Names
open Generic
open Term
open Environ
open Coqast
open Ast

(* Different strategies for renaming of bound variables *)

module type RenamingStrategy = sig
  type used_idents = identifier list
  val concrete_name : used_idents -> unit assumptions -> name -> constr 
    -> identifier option * used_idents 
  val used_of : constr -> used_idents
  val ids_of_env : unit assumptions -> used_idents
end

(* Ancienne version de renommage des variables (avant Dec 98) *)

module WeakRenamingStrategy = struct

  type used_idents = identifier list

  let concrete_name l n c =
    if n = Anonymous then (None,l)
    else 
      let fresh_id = next_name_away n l in
      if dependent (Rel 1) c then (Some fresh_id, fresh_id::l) else (None,l)
  let used_of = global_vars
  let ids_of_env env =
    map_succeed
      (function (Name id,_) -> id | _ -> failwith "caught") (get_rels env)
end

(* Nouvelle version de renommage des variables (DEC 98) *)
(* This is the algorithm to display distinct bound variables 

    - R�gle 1 : un nom non anonyme, m�me non affich�, contribue � la liste
      des noms � �viter 
    - R�gle 2 : c'est la d�pendance qui d�cide si on affiche ou pas

    Exemple : 
    si bool_ind = (P:bool->Prop)(f:(P true))(f:(P false))(b:bool)(P b), alors
    il est affich� (P:bool->Prop)(P true)->(P false)->(b:bool)(P b)
    mais f et f0 contribue � la liste des variables � �viter (en supposant 
    que les noms f et f0 ne sont pas d�j� pris)
    Int�r�t : noms homog�nes dans un but avant et apr�s Intro *)

module StrongRenamingStrategy = struct

  type used_idents = identifier list

  let occur_id env id0 c =
    let rec occur n = function
      | VAR id             -> id=id0
      | DOPN (Const sp,cl) -> (basename sp = id0) or (exists_vect (occur n) cl)
      | DOPN (Abst sp,cl)  -> (basename sp = id0) or (exists_vect (occur n) cl)
      | DOPN (MutInd _, cl) as t       -> 
	  (basename (mind_path t) = id0) or (exists_vect (occur n) cl)
      | DOPN (MutConstruct _, cl) as t -> 
	  (basename (mind_path t) = id0) or (exists_vect (occur n) cl)
      | DOPN(_,cl)         -> exists_vect (occur n) cl
      | DOP1(_,c)          -> occur n c
      | DOP2(_,c1,c2)      -> (occur n c1) or (occur n c2)
      | DOPL(_,cl)         -> List.exists (occur n) cl
      | DLAM(_,c)          -> occur (n+1) c
      | DLAMV(_,v)         -> exists_vect (occur (n+1)) v
      | Rel p              ->
	  p>n &
	  (try (fst (lookup_rel (p-n) env) = Name id0)
	   with Not_found -> false) (* Unbound indice : may happen in debug *)
      | DOP0 _             -> false
    in 
    occur 1 c

  let next_name_not_occuring name l env t =
    let rec next id =
      if List.mem id l or occur_id env id t then next (lift_ident id) else id
    in match name with
      | Name id   -> next id
      | Anonymous -> id_of_string "_"

  let concrete_name l env n c =
    if n = Anonymous then
      if dependent (Rel 1) c then anomaly "Anonymous should be non dependent"
      else (None,l)
    else
      let fresh_id = next_name_not_occuring n l env c in
      let idopt = if dependent (Rel 1) c then (Some fresh_id) else None in
      (idopt, fresh_id::l)
      
  (* Returns the list of global variables and constants in a term *)
  let global_vars_and_consts t =
    let rec collect acc = function
      | VAR id             -> id::acc
      | DOPN (Const sp,cl) -> (basename sp)::(it_vect collect acc cl)
      | DOPN (Abst sp,cl)  -> (basename sp)::(it_vect collect acc cl)
      | DOPN (MutInd _, cl) as t       -> 
	  (basename (mind_path t))::(it_vect collect acc cl)
      | DOPN (MutConstruct _, cl) as t -> 
	  (basename (mind_path t))::(it_vect collect acc cl)
      | DOPN(_,cl)         -> it_vect collect acc cl
      | DOP1(_,c)          -> collect acc c
      | DOP2(_,c1,c2)      -> collect (collect acc c1) c2
      | DOPL(_,cl)         -> List.fold_left collect acc cl
      | DLAM(_,c)          -> collect acc c
      | DLAMV(_,v)         -> it_vect collect acc v
      | _                  -> acc
    in 
    uniquize (collect [] t)
	 
  let used_of = global_vars_and_consts
  let ids_of_env = Names.ids_of_env
end


(* Tools for printing of Cases                                              *)
(* These functions implement a light form of Termenv.mind_specif_of_mind    *)
(* specially for handle Cases printing; they respect arities but not typing *)

let indsp_of_id id  =
  let (oper,_) =
    try let sp = Nametab.sp_of_id CCI id in global_operator sp id
    with Not_found -> error ("Cannot find reference "^(string_of_id id))
  in
  match oper with
    | MutInd(sp,tyi) -> (sp,tyi)
    | _ -> errorlabstrm "indsp_of_id" 
	  [< 'sTR ((string_of_id id)^" is not an inductive type") >]

let mind_specif_of_mind_light (sp,tyi) =
  let (_,mib) = mind_of_path sp in
  (mib,Constrtypes.mind_nth_type_packet mib tyi)

let rec remove_indtypes = function
  | (1, DLAMV(_,cl)) -> cl
  | (n, DLAM (_,c))  -> remove_indtypes (n-1, c)
  | _                -> anomaly "remove_indtypes: bad list of constructors"
	
let rec remove_params n t =
  if n = 0 then t
  else match t with
    | DOP2(Prod,_,DLAM(_,c)) -> remove_params (n-1) c
    | DOP2(Cast,c,_)         -> remove_params n c
    | _ -> anomaly "remove_params : insufficiently quantified"

let rec get_params = function
  | DOP2(Prod,_,DLAM(x,c)) -> x::(get_params c)
  | DOP2(Cast,c,_)         -> get_params c
  | _                      -> []

let lc_of_lmis (mib,mip) =
  let lc = remove_indtypes (mib.mINDNTYPES,mip.mINDLC) in
  Array.map (remove_params mib.mINDNPARAMS) lc

let sp_of_spi ((sp,_) as spi) =
  let (_,mip) = mind_specif_of_mind_light spi in
  let (pa,_,k) = repr_path sp in 
  make_path pa (mip.mINDTYPENAME) k


(* Parameterization of the translation from constr to ast      *)

(* Tables for Cases printing under a "if" form, a "let" form,  *)

let isomorphic_to_bool lc =
  let lcparams = Array.map get_params lc in
  Array.length lcparams = 2 & lcparams.(0) = [] & lcparams.(1) = []

let isomorphic_to_tuple lc =
  Array.length lc = 1

module PrintingCasesMake =
  functor (Test : sig 
     val test : constr array -> bool
     val error_message : string
     val member_message : identifier -> bool -> string
     val field : string
     val title : string
  end) ->
  struct
    type t = section_path * int
    let encode = indsp_of_id
    let check indsp =
      if not (Test.test (lc_of_lmis (mind_specif_of_mind_light indsp)))
      then errorlabstrm "check_encode" [< 'sTR Test.error_message >]
    let decode = sp_of_spi
    let key = Options.SecondaryTable ("Printing",Test.field)
    let title = Test.title
    let member_message = Test.member_message
    let synchronous = true
  end

module PrintingCasesIf =
  PrintingCasesMake (struct 
    let test = isomorphic_to_bool
    let error_message = "This type cannot be seen as a boolean type"
    let field = "If"
    let title = "Types leading to pretty-printing of Cases using a `if' form: "
    let member_message id = function
      | true  -> 
	  "Cases on elements of " ^ (string_of_id id)
	  ^ " are printed using a `if' form"
      | false -> 
	  "Cases on elements of " ^ (string_of_id id)
	  ^ " are not printed using `if' form"
  end)

module PrintingCasesLet =
  PrintingCasesMake (struct 
    let test = isomorphic_to_tuple
    let error_message = "This type cannot be seen as a tuple type"
    let field = "Let"
    let title = 
      "Types leading to a pretty-printing of Cases using a `let' form:"
    let member_message id = function
      | true  -> 
	  "Cases on elements of " ^ (string_of_id id)
	  ^ " are printed using a `let' form"
      | false -> 
	  "Cases on elements of " ^ (string_of_id id)
	  ^ " are not printed using a `let' form"
  end)

module PrintingIf  = Options.MakeTable(PrintingCasesIf)
module PrintingLet = Options.MakeTable(PrintingCasesLet)

(* Options for printing or not wildcard and synthetisable types *)

open Options

let wildcard_value = ref true
let force_wildcard () = !wildcard_value

let _ = 			  
  declare_async_bool_option 
    { optasyncname  = "the forced wildcard option";
      optasynckey   = Options.SecondaryTable ("Printing","Wildcard");
      optasyncread  = force_wildcard;
      optasyncwrite = (fun v -> wildcard_value := v) }

let synth_type_value = ref true
let synthetize_type () = !synth_type_value

let _ = 
  declare_async_bool_option 
    { optasyncname = "the synthesisablity";
      optasynckey   = Options.SecondaryTable ("Printing","Synth");
      optasyncread = synthetize_type;
      optasyncwrite = (fun v -> synth_type_value := v) }

(* Printing of implicit *)

let print_implicits = ref false


(* The main translation function is bdize_depcast *)

module MakeTermAst = functor (Strategy : RenamingStrategy) -> struct

  (* pour les implicites *)

  (* l est ordonne'ee (croissant), ne garder que les elements <= n *)
  let filter_until n l =
    let rec aux = function
      | [] -> []
      | i::l -> if i > n then [] else i::(aux l)
    in 
    aux l

  (* l est ordonne'e (de'croissant), n>=max(l), diviser l en deux listes,
     la 2eme est la plus longue se'quence commencant par n,
     la 1ere contient les autres elements *)

  let rec div_implicits n = 
    function 
      | [] -> [],[]
      | i::l -> 
	  if i = n then 
	    let l1,l2=(div_implicits (n-1) l) in l1,i::l2
          else 
	    i::l,[]

  let bdize_app c al =
    let impl =
      match c with
        | DOPN(MutConstruct _,_) -> mconstr_implicits c
	| DOPN(MutInd _,_) -> mind_implicits c
	| DOPN(Const _,_) -> constant_implicits c
	| VAR id -> (try (implicits_of_var CCI id) with _ -> []) (* et FW? *)
	| _ -> []
    in
    if impl = [] then 
      ope("APPLIST", al)
    else if !print_implicits then 
      ope("APPLIST", ope("XTRA",[str "!";List.hd al])::List.tl al)
    else 
      let largs = List.length al - 1 in
      let impl = List.rev (filter_until largs impl) in
      let impl1,impl2=div_implicits largs impl in
      let al1 = Array.of_list al in
      List.iter
        (fun i -> al1.(i) <-
           ope("XTRA", [str "!"; str "EX"; num i; al1.(i)]))
        impl2;
      List.iter
        (fun i -> al1.(i) <-
           ope("XTRA",[str "!"; num i; al1.(i)]))
        impl1;
      al1.(0) <- ope("XTRA",[str "!"; al1.(0)]);
      ope("APPLIST",Array.to_list al1)

  type optioncast = WithCast | WithoutCast

  (* [reference_tree p] pre-computes the variables and de bruijn occurring
     in a term to avoid a O(n2) factor when computing dependent each time *)

  type ref_tree = NODE of (int list * identifier list) * ref_tree list

  let combine l =
    let rec combine_rec = function
      | [] -> [],[]
      | NODE ((a,b),_)::l -> 
	  let a',b' = combine_rec l in (union a a',union b b')
    in 
    NODE (combine_rec l,l)

  let rec reference_tree p = function
    | VAR id -> NODE (([],[id]),[])
    | Rel n  -> NODE (([n-p],[]),[])
    | DOP0 op -> NODE (([],[]),[])
    | DOP1(op,c) -> reference_tree p c
    | DOP2(op,c1,c2) -> combine [reference_tree p c1;reference_tree p c2]
    | DOPN(op,cl) -> combine (List.map (reference_tree p) (Array.to_list cl))
    | DOPL(op,cl) -> combine (List.map (reference_tree p) cl)
    | DLAM(na,c) -> reference_tree (p+1) c 
    | DLAMV(na,cl) -> 
	combine (List.map (reference_tree (p+1))(Array.to_list cl))

  (* Auxiliary function for MutCase printing *)
  (* [computable] tries to tell if the predicate typing the result is 
     inferable *) 

  let computable p k =
    (* We first remove as many lambda as the arity, then we look
       if it remains a lambda for a dependent elimination. This function
       works for normal eta-expanded term. For non eta-expanded or
       non-normal terms, it may affirm the pred is synthetisable
       because of an undetected ultimate dependent variable in the second
       clause, or else, it may affirms the pred non synthetisable
       because of a non normal term in the fourth clause.
       A solution could be to store, in the MutCase, the eta-expanded
       normal form of pred to decide if it depends on its variables

       Lorsque le pr�dicat est d�pendant de mani�re certaine, on
       ne d�clare pas le pr�dicat synth�tisable (m�me si la
       variable d�pendante ne l'est pas effectivement) parce que
       sinon on perd la r�ciprocit� de la synth�se (qui, lui,
       engendrera un pr�dicat non d�pendant) *)

  let rec striprec = function
      (0,DOP2(Lambda,_,DLAM(_,d))) -> false
    | (0,d               )         -> noccur_bet 1 k d
    | (n,DOP2(Lambda,_,DLAM(_,d))) -> striprec (n-1,d)
    |  _                           -> false
  in striprec (k,p)

  (* Main translation function from constr -> ast *)

  let bdize_depcast opcast at_top env t =
    let init_avoid = if at_top then Strategy.ids_of_env env else [] in
    let rec bdrec avoid env t = 
      match collapse_appl t with
        (* Not well-formed constructions *)
	| DLAM(na,c) ->
	    (match Strategy.concrete_name avoid env na c with
	       | (Some id,avoid') -> 
		   slam(Some (string_of_id id),
			bdrec avoid' (add_rel (Name id,()) env) c)
               | (None,avoid') -> slam(None,bdrec avoid' env (pop c)))
	| DLAMV(na,cl) ->
	    if not(exists_vect (dependent (Rel 1)) cl) then
	      slam(None,ope("V$", map_vect_list 
			      (fun c -> bdrec avoid env (pop c)) cl))
	    else
	      let id = next_name_away na avoid in 
	      slam(Some (string_of_id id),
		   ope("V$", map_vect_list 
			 (bdrec (id::avoid) (add_rel (Name id,()) env)) cl))

        (* Well-formed constructions *)
	| regular_constr -> 
	    (match kind_of_term regular_constr with
	       | IsRel n ->
		   (try match fst(lookup_rel n env) with
		      | Name id -> nvar (string_of_id id)
		      | Anonymous -> raise Not_found
		    with Not_found -> ope("REL",[num n]))
               (* TODO: Change this to subtract the current depth *)
	       | IsMeta n -> ope("META",[num n])
	       | IsVar id -> nvar (string_of_id id)
	       | IsXtra (s,pl,cl) -> 
		   ope("XTRA",((str s):: pl@(List.map (bdrec avoid env) cl)))
	       | IsSort s ->
		   (match s with
		      | Prop c -> ope("PROP",[ide (str_of_contents c)])
		      | Type u -> ope("TYPE",[path_section dummy_loc u.u_sp; 
					      num u.u_num]))
	       | IsImplicit -> ope("IMPLICIT",[])     
	       | IsCast (c1,c2) ->
		   if opcast = WithoutCast then 
		     bdrec avoid env c1 
		   else 
		     ope("CAST",[bdrec avoid env c1;bdrec avoid env c2])
	       | IsProd (Anonymous,ty,c) ->
                   (* Anonymous product are never factorized *)
		   ope("PROD",[bdrec [] env ty;
			       slam(None,bdrec avoid env (pop c))])
	       | IsProd (Name _ as na,ty,c) ->
		   let (n,a) = factorize_binder 1 avoid env Prod na ty c in
                   (* PROD et PRODLIST doivent �tre distingu�s � cause du cas
		      non d�pendant, pour isoler l'implication; 
		      peut-�tre un constructeur ARROW serait-il 
		      plus justifi� ? *)
		   let oper = if n=1 then "PROD" else "PRODLIST" in
		   ope(oper,[bdrec [] env ty;a])
	       | IsLambda (na,ty,c) ->
		   let (_,a) = factorize_binder 1 avoid env Lambda na ty c in
                   (* LAMBDA et LAMBDALIST se comportent pareil *)
		   ope("LAMBDALIST",[bdrec [] env ty;a])
	       | IsAppL (f,args) ->
		   bdize_app f (List.map (bdrec avoid env) (f::args))

	       | IsConst (sp,cl) ->
		   ope("CONST",((path_section dummy_loc sp)::
				(map_vect_list (bdrec avoid env) cl)))
	       | IsAbst (sp,cl) ->
		   ope("ABST",((path_section dummy_loc sp)::
			       (map_vect_list (bdrec avoid env) cl)))
	       | IsMutInd (sp,tyi,cl) ->
		   ope("MUTIND",((path_section dummy_loc sp)::(num tyi)::
				 (map_vect_list (bdrec avoid env) cl)))
	       | IsMutConstruct (sp,tyi,n,cl) ->
		   ope("MUTCONSTRUCT",
		       ((path_section dummy_loc sp)::(num tyi)::(num n)::
			(map_vect_list (bdrec avoid env) cl)))
	       | IsMutCase (annot,p,c,bl) ->
		   let synth_type = synthetize_type () in
		   let tomatch = bdrec avoid env c in
		   begin match annot with
		     | None -> 
			 (* Pas d'annotation --> affichage avec vieux Case *)
			 let pred = bdrec avoid env p in
			 let bl' = map_vect_list (bdrec avoid env) bl in
			 ope("MUTCASE",pred::tomatch::bl')
		     | Some indsp ->
			 let (mib,mip as lmis) = 
			   mind_specif_of_mind_light indsp in
			 let lc = lc_of_lmis lmis in
			 let lcparams = Array.map get_params lc in
			 let k = 
			   (nb_prod mip.mINDARITY.body) - mib.mINDNPARAMS in
			 let pred = 
			   if synth_type & computable p k & lcparams <> [||]
			   then ope("XTRA", [str "SYNTH"])
			   else bdrec avoid env p 
			 in
			 if PrintingIf.active indsp then 
			   ope("FORCEIF", [ pred; tomatch;
					    bdrec avoid env bl.(0); 
					    bdrec avoid env bl.(1) ])
			 else
			   let idconstructs = mip.mINDCONSNAMES in
			   let asttomatch = 
			     ope("XTRA",[str "TOMATCH"; tomatch]) in
			   let eqnv = 
			     map3_vect (bdize_eqn avoid env) idconstructs 
			       lcparams bl in
			   let eqnl = Array.to_list eqnv in
			   let tag =
			     if PrintingLet.active indsp then 
			       "FORCELET" 
			     else 
			       "MULTCASE"
			   in 
			   ope("XTRA", (str tag)::pred::asttomatch::eqnl)
		   end

	       | IsFix (nv,n,cl,lfn,vt) ->
		   let lfi = 
		     List.map (fun na -> next_name_away na avoid) lfn in
		   let def_env = 
		     List.fold_left
		       (fun env id -> add_rel (Name id,()) env) env lfi in
		   let def_avoid = lfi@avoid in
		   let f = List.nth lfi n in
		   let rec split_lambda binds env avoid = function
		       (0, t) -> 
			 binds,bdrec avoid env t
		     | (n, DOP2(Cast,t,_)) -> 
			 split_lambda binds env avoid (n,t)
		     | (n, DOP2(Lambda,t,DLAM(na,b))) ->
			 let ast = bdrec avoid env t in
			 let id = next_name_away na avoid in
			 let ast_of_bind = 
			   ope("BINDER",[ast;nvar (string_of_id id)]) in
			 let new_env = add_rel (Name id,()) env in
			 split_lambda (ast_of_bind::binds) 
			   new_env (id::avoid) (n-1,b)
		     | _ -> error "split_lambda" 
		   in
		   let rec split_product env avoid = function
		     | (0, t) -> bdrec avoid env t
		     | (n, DOP2(Cast,t,_)) -> split_product env avoid (n,t)
		     | (n, DOP2(Prod,t,DLAM(na,b))) ->
			 let ast = bdrec avoid env t in
			 let id = next_name_away na avoid in
			 let new_env = add_rel (Name id,()) env in
			 split_product new_env (id::avoid) (n-1,b)
		     | _ -> error "split_product" 
		   in
		   let listdecl = 
		     map_i
		       (fun i fi ->
			  let (lparams,ast_of_def) =
			    split_lambda [] def_env def_avoid 
			      (nv.(i)+1,vt.(i)) in
			  let ast_of_typ = 
			    split_product env avoid (nv.(i)+1,cl.(i)) in
			  ope("FDECL",
			      [ nvar (string_of_id fi); 
				ope ("BINDERS",List.rev lparams);
				ast_of_typ; ast_of_def ]))
		       0 lfi 
		   in 
		   ope("FIX", (nvar (string_of_id f))::listdecl)

	       | IsCoFix (n,cl,lfn,vt) ->
		   let lfi = 
		     List.map (fun na -> next_name_away na avoid) lfn in
		   let def_env =
		     List.fold_left 
		       (fun env id -> add_rel (Name id,()) env) env lfi in
		   let def_avoid = lfi@avoid in
		   let f = List.nth lfi n in
		   let listdecl =
		     map_i (fun i fi -> ope("CFDECL",
					    [nvar (string_of_id fi);
					     bdrec avoid env cl.(i);
					     bdrec def_avoid def_env vt.(i)]))
		       0 lfi
		   in 
		   ope("COFIX", (nvar (string_of_id f))::listdecl))

    and bdize_eqn avoid env constructid construct_params branch =
      let print_underscore = force_wildcard () in
      let cnvar = nvar (string_of_id constructid) in
      let rec buildrec nvarlist avoid env = function
	| _::l, DOP2(Lambda,_,DLAM(x,b)) -> 
	    let x'=
              if not print_underscore or (dependent (Rel 1) b) then x 
              else Anonymous in
            let id = next_name_away x' avoid in
            let new_env = (add_rel (Name id,()) env) in
            let new_avoid = id::avoid in
            let new_nvarlist = (nvar (string_of_id id))::nvarlist in
            buildrec new_nvarlist new_avoid new_env (l,b)
	      
	| l, DOP2(Cast,b,_) -> 
	    (* Oui, il y a parfois des cast *)
	    buildrec nvarlist avoid env (l,b)
	      
	| x::l, b -> 
	    (* eta-expansion : n'arrivera plus lorsque tous les
	       termes seront construits � partir de la syntaxe Cases
	       nommage de la nouvelle variable *)
            let id = next_name_away_with_default "x" x avoid in
	    let new_nvarlist = (nvar (string_of_id id))::nvarlist in
            let new_env = (add_rel (Name id,()) env) in
            let new_avoid = id::avoid in
            let new_b = DOPN(AppL,[|lift 1 b; Rel 1|]) in
            buildrec new_nvarlist new_avoid new_env (l,new_b)

	| [], b	-> 
	    let pattern =
              if nvarlist = [] then cnvar
              else ope ("APPLIST", cnvar::(List.rev nvarlist)) in
	    let action = bdrec avoid env b in
	    ope("XTRA", [str "EQN"; action; pattern])
      in 
      buildrec [] avoid env (construct_params,branch)

    and factorize_binder n avoid env oper na ty c =
      let (env2, avoid2,na2) =
	match Strategy.concrete_name avoid env na c with
	  | (Some id,l') -> 
	      add_rel (Name id,()) env, l', Some (string_of_id id) 
	  | (None,l') -> 
	      add_rel (Anonymous,()) env, l', None
      in
      let (p,body) = match c with
	| DOP2(oper',ty',DLAM(na',c')) 
	    when (oper = oper')
	      & eq_constr (lift 1 ty) ty'
	      & not (na' = Anonymous & oper = Prod)
	      -> factorize_binder (n+1) avoid2 env2 oper na' ty' c'
	| _ -> (n,bdrec avoid2 env2 c)
      in 
      (p,slam(na2, body))
    in
    bdrec init_avoid env t

  let bdize  = bdize_depcast WithCast
  let bdize_no_casts = bdize_depcast WithoutCast

  let lookup_name_as_renamed env t s =
    let rec lookup avoid env n = function
      | DOP2(Prod,_,DLAM(name,c')) ->
	  (match Strategy.concrete_name avoid env name c' with
             | (Some id,avoid') -> 
		 if id=s then (Some n) 
		 else lookup avoid' (add_rel (Name id,()) env) (n+1) c'
	     | (None,avoid') -> lookup avoid' env (n+1) (pop c'))
      | DOP2(Cast,c,_) -> lookup avoid env n c
      | _ -> None
    in 
    lookup (Strategy.ids_of_env env) env 1 t

  let lookup_index_as_renamed t n =
    let rec lookup n d = function
      | DOP2(Prod,_,DLAM(name,c')) -> 
	  (match Strategy.concrete_name [] (gLOB nil_sign) name c' with
             | (Some _,_) -> lookup n (d+1) c'
             | (None  ,_) -> if n=1 then Some d else lookup (n-1) (d+1) c')
      | DOP2(Cast,c,_) -> lookup n d c
      | _ -> None
    in 
    lookup n 1 t

end (* of functor MakeTermAst *)

(* This old version are currently no longer used.

Until V6.2.4, similar names were allowed in hypothesis and quatified
variables of a goal. This behaviour can still be recovered by using
the functions available in the WeakTermAst module.

module WeakTermAst = MakeTermAst(WeakRenamingStrategy)

let bdize = WeakTermAst.bdize
let bdize_no_casts = WeakTermAst.bdize_no_casts
let lookup_name_as_renamed = WeakTermAst.lookup_name_as_renamed
let lookup_index_as_renamed = WeakTermAst.lookup_index_as_renamed
*)

module StrongTermAst = MakeTermAst(StrongRenamingStrategy)

let bdize = StrongTermAst.bdize
let bdize_no_casts = StrongTermAst.bdize_no_casts
let lookup_name_as_renamed = StrongTermAst.lookup_name_as_renamed
let lookup_index_as_renamed = StrongTermAst.lookup_index_as_renamed