]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/matita/contribs/lambdadelta/bin/recomm/recommGcbGroundLib.ml
update in ground
[helm.git] / matita / matita / contribs / lambdadelta / bin / recomm / recommGcbGroundLib.ml
index 94db88ed7f01e9732317d6eed6a4a43f863bca60..95c38750c11471b9393a99dd1eedee3ba091bc02 100644 (file)
@@ -4,6 +4,7 @@ module R = RecommPcsAnd
 let step k st outs ins =
   if st <> T.OO then k st outs ins else
   match ins with
+  | "stream_eq" :: tl -> k T.OK ("stream_eq" :: outs) tl
   | "ctc" :: tl -> k T.OK ("ctc" :: outs) tl
   | "contextual" :: "transitive" :: "closure" :: tl -> k T.OK ("ctc" :: outs) tl
   | "compose" :: tl -> k T.OK ("compose" :: outs) tl
@@ -11,6 +12,7 @@ let step k st outs ins =
   | "lsub" :: tl -> k T.OK ("lsub" :: outs) tl
   | "land" :: tl -> k T.OK ("land" :: outs) tl
   | "eq" :: tl -> k T.OK ("eq" :: outs) tl
+  | "ex4" :: tl -> k T.OK ("ex4" :: outs) tl
   | _ -> k T.OO outs ins
 
 let main =