]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/matita/contribs/lambdadelta/apps_2/functional/rtm.ma
update in static_2 and app_2
[helm.git] / matita / matita / contribs / lambdadelta / apps_2 / functional / rtm.ma
index c7acff72e070939f853e90340b01ac54b478fd84..e8ac123704222175de0ab6c494af6f460a507607 100644 (file)
@@ -12,8 +12,9 @@
 (*                                                                        *)
 (**************************************************************************)
 
-include "basic_2/grammar/term_vector.ma".
-include "basic_2/grammar/genv.ma".
+include "basic_2/syntax/term_vector.ma".
+include "basic_2/syntax/genv.ma".
+include "apps_2/functional/notation.ma".
 
 (* REDUCTION AND TYPE MACHINE ***********************************************)
 
@@ -43,18 +44,18 @@ record rtm: Type[0] ≝
 
 (* initial state *)
 definition rtm_i: genv → term → rtm ≝
-                  Î»G,T. mk_rtm G 0 (â\8b\86) (â\9f ) T.
+                  Î»G,T. mk_rtm G 0 (â\8b\86) (â\92º) T.
 
 (* update code *)
 definition rtm_t: rtm → term → rtm ≝
                   λM,T. match M with
-                  [ mk_rtm G u E _ _ â\87\92 mk_rtm G u E (â\9f ) T
+                  [ mk_rtm G u E _ _ â\87\92 mk_rtm G u E (â\92º) T
                   ].
 
 (* update closure *)
 definition rtm_u: rtm → xenv → term → rtm ≝
                   λM,E,T. match M with
-                  [ mk_rtm G u _ _ _ â\87\92 mk_rtm G u E (â\9f ) T
+                  [ mk_rtm G u _ _ _ â\87\92 mk_rtm G u E (â\92º) T
                   ].
 
 (* get global environment *)