]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/lambda-delta/basic_rg/brgUntrusted.ml
we are changing the kernel version from basic_rg to basic_ag
[helm.git] / helm / software / lambda-delta / basic_rg / brgUntrusted.ml
diff --git a/helm/software/lambda-delta/basic_rg/brgUntrusted.ml b/helm/software/lambda-delta/basic_rg/brgUntrusted.ml
deleted file mode 100644 (file)
index 96be162..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-(*
-    ||M||  This file is part of HELM, an Hypertextual, Electronic        
-    ||A||  Library of Mathematics, developed at the Computer Science     
-    ||T||  Department, University of Bologna, Italy.                     
-    ||I||                                                                
-    ||T||  HELM is free software; you can redistribute it and/or         
-    ||A||  modify it under the terms of the GNU General Public License   
-    \   /  version 2 or (at your option) any later version.              
-     \ /   This software is distributed as is, NO WARRANTY.              
-      V_______________________________________________________________ *)
-
-module B = Brg
-module E = BrgEnvironment
-module T = BrgType
-
-(* Interface functions ******************************************************)
-
-(* to share *)
-let type_check f g = function
-   | None                    -> f None None
-   | Some (a, uri, B.Abst t) ->
-      let f tt obj = f (Some tt) (Some obj) in
-      let f xt tt = E.set_obj (f tt) (a, uri, B.Abst xt) in
-      T.type_of f g B.empty_context t
-   | Some (a, uri, B.Abbr t) ->
-      let f tt obj = f (Some tt) (Some obj) in
-      let f xt tt = E.set_obj (f tt) (a, uri, B.Abbr xt) in
-      T.type_of f g B.empty_context t
-   | Some (a, uri, B.Void)   ->
-      let f obj = f None (Some obj) in
-      E.set_obj f (a, uri, B.Void)