]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/mathql_interpreter/context.ml
MathQL 1.3 ready for use
[helm.git] / helm / ocaml / mathql_interpreter / context.ml
diff --git a/helm/ocaml/mathql_interpreter/context.ml b/helm/ocaml/mathql_interpreter/context.ml
deleted file mode 100644 (file)
index 377670d..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-(* contexts *****************************************************************)
-
-type svar_context = (MathQL.svar * MathQL.resource_set) list
-
-type rvar_context = (MathQL.rvar * MathQL.resource) list
-
-type group_context = (MathQL.rvar * MathQL.attribute_group) list
-
-type vvar_context = (MathQL.vvar * MathQL.value) list
-
-
-type context = {svars: svar_context;   (* contesto delle svar *)
-                rvars: rvar_context;   (* contesto delle rvar *)
-                groups: group_context; (* contesto dei gruppi *)
-                vvars: vvar_context    (* contesto delle vvar introdotte con let-in *)
-               }
-
-let upd_svars c s = {c with svars = s}
-
-let upd_rvars c s = {c with rvars = s}
-
-let upd_groups c s = {c with groups = s}
-
-let upd_vvars c s = {c with vvars = s}