]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/tactics/declarative.ml
Missing copyright added to tactics/declarative.ml*
[helm.git] / helm / software / components / tactics / declarative.ml
1 (* Copyright (C) 2006, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://cs.unibo.it/helm/.
24  *)
25
26 let assume id t =
27  Tacticals.then_
28   ~start:
29     (Tactics.intros ~howmany:1
30       ~mk_fresh_name_callback:(fun _ _ _ ~typ -> Cic.Name id) ())
31   ~continuation:
32     (Tactics.change ~pattern:(None,[id,Cic.Implicit (Some `Hole)],None)
33      (fun _ metasenv ugraph -> t,metasenv,ugraph))
34 ;;
35
36 let suppose t id =
37  Tacticals.then_
38    ~start:
39        (Tactics.intros ~howmany:1
40              ~mk_fresh_name_callback:(fun _ _ _ ~typ -> Cic.Name id) ())
41    ~continuation:
42             (Tactics.change ~pattern:(None,[id,Cic.Implicit (Some `Hole)],None)  
43               (fun _ metasenv ugraph -> t,metasenv,ugraph))
44 ;;
45
46 let by_term_we_proved t ty id =
47  Tacticals.thens
48  ~start:
49    (Tactics.cut ty
50      ~mk_fresh_name_callback:(fun _ _ _  ~typ -> Cic.Name id))
51  ~continuations:
52    [ Tacticals.id_tac ; Tactics.apply t ]
53 ;;
54
55 let bydone t =
56    (Tactics.apply ~term:t)
57 ;;
58
59 let we_need_to_prove t id =
60  let aux status =
61   let proof,goals =
62    ProofEngineTypes.apply_tactic
63     (Tactics.cut t
64       ~mk_fresh_name_callback:(fun _ _ _  ~typ -> Cic.Name id))
65     status
66   in
67    let goals' =
68     match goals with
69        [fst; snd] -> [snd; fst]
70      | _ -> assert false
71    in
72     proof,goals'
73  in
74   ProofEngineTypes.mk_tactic aux
75 ;;