diff options
| author | herbelin | 2001-08-05 18:57:11 +0000 |
|---|---|---|
| committer | herbelin | 2001-08-05 18:57:11 +0000 |
| commit | f7351ff222bad0cc906dbee3c06b20babf920100 (patch) | |
| tree | 02debfe8d0d9a7b1fb5deaa481d0ba84f85a1c3c | |
| parent | 742cb1e14c773e9cc5ea5e1b35d361e4864943be (diff) | |
Code mort
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@1879 85f007b7-540e-0410-9357-904b9bb8a0f7
| -rw-r--r-- | proofs/tacmach.ml | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/proofs/tacmach.ml b/proofs/tacmach.ml index d63325cd85..8768dfd315 100644 --- a/proofs/tacmach.ml +++ b/proofs/tacmach.ml @@ -286,30 +286,6 @@ let overwriting_tactic = Refiner.overwriting_add_tactic type ('a,'b) parse_combinator = ('a -> tactic) -> ('b -> tactic) -(* Inutile ?! réécrit plus loin -let tactic_com tac t x = tac (pf_interp_constr x t) x - -let tactic_com_sort tac t x = tac (pf_interp_type x t) x - -let tactic_com_list tac tl x = - let translate = pf_interp_constr x in - tac (List.map translate tl) x - -let tactic_bind_list tac tl x = - let translate = pf_interp_constr x in - tac (List.map (fun (b,c)->(b,translate c)) tl) x - -let tactic_com_bind_list tac (c,tl) x = - let translate = pf_interp_constr x in - tac (translate c,List.map (fun (b,c')->(b,translate c')) tl) x - -let tactic_com_bind_list_list tac args gl = - let translate (c,tl) = - (pf_interp_constr gl c, - List.map (fun (b,c')->(b,pf_interp_constr gl c')) tl) in - tac (List.map translate args) gl -*) - (********************************************************) (* Functions for hiding the implementation of a tactic. *) (********************************************************) @@ -328,7 +304,6 @@ let overwrite_hidden_tactic s tac = (fun args -> vernac_tactic(s,args)) let tactic_com = - fun tac t x -> tac (pf_interp_constr x t) x let tactic_opencom = |
