X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=components%2Facic_procedural%2FproceduralMode.ml;h=e13846fc85a3ddee2b6dbb4f805be0ab7fac1de6;hb=65662e7d8de61a338b636f208d04e85eb59e6b8e;hp=bd2c3a438c9fce26563f6eb04a6917dad5246a0d;hpb=8f5b25b6091f1e240f37de5355e7a99b756e98e8;p=helm.git diff --git a/components/acic_procedural/proceduralMode.ml b/components/acic_procedural/proceduralMode.ml index bd2c3a438..e13846fc8 100644 --- a/components/acic_procedural/proceduralMode.ml +++ b/components/acic_procedural/proceduralMode.ml @@ -23,9 +23,16 @@ * http://cs.unibo.it/helm/. *) -module C = Cic +module C = Cic +module PEH = ProofEngineHelpers + module Cl = ProceduralClassify +let is_eliminator = function + | _ :: (_, C.MutInd _) :: _ -> true + | _ :: (_, C.Appl (C.MutInd _ :: _)) :: _ -> true + | _ -> false + let is_const = function | C.Sort _ | C.Const _ @@ -41,5 +48,10 @@ let rec is_appl b = function | _ -> false let bkd c t = - let ts, _ = Cl.split c t in - is_appl true (List.hd ts) + let classes, rc = Cl.classify c t in + let premises, _ = PEH.split_with_whd (c, t) in + match rc with + | Some (i, j, _, _) when i > 1 && i <= List.length classes && is_eliminator premises -> true + | _ -> + let _, conclusion = List.hd premises in + is_appl true conclusion