X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=matita%2Fmatita%2Fcontribs%2Flambdadelta%2Fbin%2Frecomm%2FrecommGcsWith.ml;h=48fe0795593ced1a9bfc08c2bb5e54727811c58f;hb=d59f1c74c62ad3706d50707bb68758d88fbed006;hp=091bb2d12a447aa129d300813f77b68e2cf4d485;hpb=4d232392091ee233afc26ecf3120dd5f5c6a33c8;p=helm.git diff --git a/matita/matita/contribs/lambdadelta/bin/recomm/recommGcsWith.ml b/matita/matita/contribs/lambdadelta/bin/recomm/recommGcsWith.ml index 091bb2d12..48fe07955 100644 --- a/matita/matita/contribs/lambdadelta/bin/recomm/recommGcsWith.ml +++ b/matita/matita/contribs/lambdadelta/bin/recomm/recommGcsWith.ml @@ -6,6 +6,9 @@ let step k st outs ins = if st = T.KO then k st outs ins else match ins with | "with" :: tl -> k T.OK ("with" :: outs) tl + | "of" :: tl -> k T.OK ("with" :: outs) tl + | "for" :: tl -> k T.OK ("with" :: outs) tl + | "on" :: tl -> k T.OK ("with" :: outs) tl | _ -> k T.OO outs ins let main =