]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/lambda-delta/dual_rg/drgAut.ml
we enabled the new style xml exportation, in particular for dual_rg
[helm.git] / helm / software / lambda-delta / dual_rg / drgAut.ml
index aaf9d20c73ee3b126a09e9821aa13f71313b823c..bf42cc2abaab83252857ffc32b9c0e4eaa857f50 100644 (file)
@@ -53,7 +53,7 @@ let add_abst (a, ws) id w =
    Y.Name (id, true) :: a, w :: ws 
 
 let lenv_of_cnt (a, ws) = 
-   D.push C.start D.empty_lenv a (D.Abst ws)
+   D.push_bind C.start D.empty_lenv a (D.Abst ws)
 
 let mk_lref f i j k = f (D.TLRef ([Y.Apix k], i, j))
 
@@ -121,18 +121,22 @@ let rec xlate_term f st lenv = function
          let a, b = [Y.Name (name, true)], (D.Abst [ww]) in
         let f tt = f (D.TBind (a, b, tt)) in
          let f lenv = xlate_term f st lenv t in
-        D.push f lenv a b
+        D.push_bind f lenv a b
       in
       xlate_term f st lenv w
    | A.GRef (name, args) ->
       let g qid (a, _) =
+         let gref = D.TGRef ([], uri_of_qid qid) in
         let map1 f = xlate_term f st lenv in       
         let map2 f = function
            | Y.Name (id, _) -> D.resolve_lref Cps.err (mk_lref f) id lenv
            | _              -> assert false
         in
          let f tail = 
-           let f args = f (D.TAppl ([], args, D.TGRef ([], uri_of_qid qid))) in
+           let f = function
+              | []   -> f gref
+              | args -> f (D.TAppl ([], args, gref))
+           in
             let f a = C.list_rev_map_append f map2 a ~tail in
            C.list_sub_strict f a args
         in