X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Facic_procedural%2FproceduralTypes.ml;h=ed198d99b6c66ebf7bafbf7a2f036a52668ed6c9;hb=6bd0d331d096d862754b42f9a7fb8af1b823685d;hp=3b6afc4c31ac0d54f18d58613c583311801e199d;hpb=5b45f78ed4293ebbe8cc73ad925bca11a300d021;p=helm.git diff --git a/helm/software/components/acic_procedural/proceduralTypes.ml b/helm/software/components/acic_procedural/proceduralTypes.ml index 3b6afc4c3..ed198d99b 100644 --- a/helm/software/components/acic_procedural/proceduralTypes.ml +++ b/helm/software/components/acic_procedural/proceduralTypes.ml @@ -74,6 +74,7 @@ type step = Note of note | Statement of flavour * name * what * body * note | Qed of note | Id of note + | Exact of what * note | Intros of count option * name list * note | Cut of name * what * note | LetIn of name * what * note @@ -166,6 +167,10 @@ let mk_id punctation = let tactic = G.IdTac floc in mk_tactic tactic punctation +let mk_exact t punctation = + let tactic = G.Exact (floc, t) in + mk_tactic tactic punctation + let mk_intros xi xids punctation = let tactic = G.Intros (floc, (xi, xids)) in mk_tactic tactic punctation @@ -201,7 +206,7 @@ let mk_cases what pattern punctation = mk_tactic tactic punctation let mk_apply t punctation = - let tactic = G.ApplyP (floc, t) in + let tactic = G.Apply (floc, t) in mk_tactic tactic punctation let mk_change t where pattern punctation = @@ -239,6 +244,7 @@ let rec render_step sep a = function | Statement (f, n, t, v, s) -> mk_statement f n t v :: mk_thnote s a | Inductive (lps, ts, s) -> mk_inductive lps ts :: mk_thnote s a | Qed s -> mk_qed :: mk_tacnote s a + | Exact (t, s) -> mk_exact t sep :: mk_tacnote s a | Id s -> mk_id sep :: mk_tacnote s a | Intros (c, ns, s) -> mk_intros c ns sep :: mk_tacnote s a | Cut (n, t, s) -> mk_cut n t sep :: mk_tacnote s a @@ -273,31 +279,41 @@ let render_steps a = render_steps mk_dot a let rec count_step a = function | Note _ - | Statement _ - | Qed _ -> a - | Branch (pps, _) -> List.fold_left count_steps a pps - | _ -> succ a + | Statement _ + | Inductive _ + | Qed _ +(* level 0 *) + | Intros (Some 0, [], _) + | Id _ + | Exact _ + | Change _ + | Clear _ + | ClearBody _ -> a + | Branch (pps, _) -> List.fold_left count_steps a pps +(* level 1 *) + | _ -> succ a and count_steps a = List.fold_left count_step a +let count = I.count_nodes ~meta:false + let rec count_node a = function | Note _ | Inductive _ | Statement _ - | Qed _ + | Qed _ | Id _ | Intros _ | Clear _ | ClearBody _ -> a + | Exact (t, _) | Cut (_, t, _) | LetIn (_, t, _) - | Apply (t, _) -> I.count_nodes a (H.cic t) + | Apply (t, _) -> count a (H.cic t) | Rewrite (_, t, _, p, _) | Elim (t, _, p, _) | Cases (t, p, _) - | Change (t, _, _, p, _) -> - let a = I.count_nodes a (H.cic t) in - I.count_nodes a (H.cic p) + | Change (t, _, _, p, _) -> let a = count a (H.cic t) in count a (H.cic p) | Branch (ss, _) -> List.fold_left count_nodes a ss and count_nodes a = List.fold_left count_node a