X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fmatita%2Fcontribs%2Flambdadelta%2Fbin%2Frecomm%2FrecommGcbGroundCounters.ml;h=8391c7da928a96bce36f497025da181abf5ca391;hb=4d232392091ee233afc26ecf3120dd5f5c6a33c8;hp=53a98c92e2f30b1297b3f8bd218b2fddab8a726a;hpb=dbc57c92512c04b3fd88f8289bb8dbe99b2f90e0;p=helm.git diff --git a/matita/matita/contribs/lambdadelta/bin/recomm/recommGcbGroundCounters.ml b/matita/matita/contribs/lambdadelta/bin/recomm/recommGcbGroundCounters.ml index 53a98c92e..8391c7da9 100644 --- a/matita/matita/contribs/lambdadelta/bin/recomm/recommGcbGroundCounters.ml +++ b/matita/matita/contribs/lambdadelta/bin/recomm/recommGcbGroundCounters.ml @@ -1,10 +1,13 @@ -let step k ok outs ins = - if ok then k ok outs ins else +module T = RecommTypes +module R = RecommPcsAnd + +let step k st outs ins = + if st <> T.OO then k st outs ins else match ins with - | "rtc_plus" :: tl -> k true ("rtc_plus" :: outs) tl - | "rtc_max" :: tl -> k true ("rtc_max" :: outs) tl - | "rtc_shift" :: tl -> k true ("rtc_shift" :: outs) tl - | _ -> k ok outs ins + | "rtc_plus" :: tl -> k T.OK ("rtc_plus" :: outs) tl + | "rtc_max" :: tl -> k T.OK ("rtc_max" :: outs) tl + | "rtc_shift" :: tl -> k T.OK ("rtc_shift" :: outs) tl + | _ -> k T.OO outs ins let main = - RecommPcsAnd.register_b step + R.register_b step