]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambdadelta/bin/recomm/recommGcbGroundCounters.ml
update in ground
[helm.git] / matita / matita / contribs / lambdadelta / bin / recomm / recommGcbGroundCounters.ml
1 module T = RecommTypes
2 module R = RecommPcsAnd
3
4 let step k st outs ins =
5   if st <> T.OO then k st outs ins else
6   match ins with
7   | "rtc_plus" :: tl -> k T.OK ("rtc_plus" :: outs) tl
8   | "rtc_max" :: tl -> k T.OK ("rtc_max" :: outs) tl
9   | "rtc_shift" :: tl -> k T.OK ("rtc_shift" :: outs) tl
10   | _ -> k T.OO outs ins
11
12 let main =
13   R.register_b step