]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/tactics/declarative.ml
New declarative commands (ast, pretty-printing and parsing only):
[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 ty =
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 ty' =
47  match t with
48     None -> assert false
49   | Some t ->
50      Tacticals.thens
51      ~start:
52        (Tactics.cut ty
53          ~mk_fresh_name_callback:(fun _ _ _  ~typ -> Cic.Name id))
54      ~continuations:
55        [ Tacticals.id_tac ; Tactics.apply t ]
56 ;;
57
58 let bydone t =
59    match t with
60     None -> assert false
61   | Some t ->
62     (Tactics.apply ~term:t)
63 ;;
64
65 let we_need_to_prove t id ty =
66  let aux status =
67   let proof,goals =
68    ProofEngineTypes.apply_tactic
69     (Tactics.cut t
70       ~mk_fresh_name_callback:(fun _ _ _  ~typ -> Cic.Name id))
71     status
72   in
73    let goals' =
74     match goals with
75        [fst; snd] -> [snd; fst]
76      | _ -> assert false
77    in
78     proof,goals'
79  in
80   ProofEngineTypes.mk_tactic aux
81 ;;
82
83 let prova _ = assert false
84 ;;
85 let bywehave _ = assert false
86 ;;
87 let case _ = assert false
88 ;;
89 let thesisbecomes _ = assert false
90 ;;
91 let byinduction _ = assert false
92 ;;
93 let we_proceed_by_induction_on _ = assert false
94 ;;
95 let let1 _ = assert false