| author | nipkow | 
| Fri, 23 Nov 2012 23:07:38 +0100 | |
| changeset 50180 | c6626861c31a | 
| parent 47432 | e1576d13e933 | 
| child 51369 | 960b0ca9ae5d | 
| permissions | -rw-r--r-- | 
| 30439 | 1  | 
(* Title: HOL/Decision_Procs/mir_tac.ML  | 
| 23858 | 2  | 
Author: Amine Chaieb, TU Muenchen  | 
3  | 
*)  | 
|
4  | 
||
| 31240 | 5  | 
signature MIR_TAC =  | 
6  | 
sig  | 
|
| 32740 | 7  | 
val trace: bool Unsynchronized.ref  | 
| 31240 | 8  | 
val mir_tac: Proof.context -> bool -> int -> tactic  | 
9  | 
end  | 
|
10  | 
||
| 29788 | 11  | 
structure Mir_Tac =  | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
12  | 
struct  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
13  | 
|
| 32740 | 14  | 
val trace = Unsynchronized.ref false;  | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
15  | 
fun trace_msg s = if !trace then tracing s else ();  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
16  | 
|
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
17  | 
val mir_ss =  | 
| 39159 | 18  | 
let val ths = [@{thm "real_of_int_inject"}, @{thm "real_of_int_less_iff"}, @{thm "real_of_int_le_iff"}]
 | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
19  | 
in @{simpset} delsimps ths addsimps (map (fn th => th RS sym) ths)
 | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
20  | 
end;  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
21  | 
|
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
22  | 
val nT = HOLogic.natT;  | 
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
45654 
diff
changeset
 | 
23  | 
  val nat_arith = [@{thm diff_nat_numeral}];
 | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
24  | 
|
| 39159 | 25  | 
  val comp_arith = [@{thm "Let_def"}, @{thm "if_False"}, @{thm "if_True"}, @{thm "add_0"},
 | 
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
45654 
diff
changeset
 | 
26  | 
                 @{thm "add_Suc"}, @{thm add_numeral_left}, @{thm mult_numeral_left(1)},
 | 
| 39159 | 27  | 
                 @{thm "Suc_eq_plus1"}] @
 | 
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
45654 
diff
changeset
 | 
28  | 
                 (map (fn th => th RS sym) [@{thm "numeral_1_eq_1"}])
 | 
| 25481 | 29  | 
                 @ @{thms arith_simps} @ nat_arith @ @{thms rel_simps} 
 | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
30  | 
  val ths = [@{thm "mult_numeral_1"}, @{thm "mult_numeral_1_right"}, 
 | 
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
45654 
diff
changeset
 | 
31  | 
             @{thm real_of_nat_numeral},
 | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
32  | 
             @{thm "real_of_nat_Suc"}, @{thm "real_of_nat_one"}, @{thm "real_of_one"},
 | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
33  | 
             @{thm "real_of_int_zero"}, @{thm "real_of_nat_zero"},
 | 
| 36308 | 34  | 
             @{thm "divide_zero"}, 
 | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
35  | 
             @{thm "divide_divide_eq_left"}, @{thm "times_divide_eq_right"}, 
 | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
36  | 
             @{thm "times_divide_eq_left"}, @{thm "divide_divide_eq_right"},
 | 
| 37887 | 37  | 
             @{thm "diff_minus"}, @{thm "minus_divide_left"}]
 | 
| 45654 | 38  | 
val comp_ths = ths @ comp_arith @ @{thms simp_thms};
 | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
39  | 
|
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
40  | 
|
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
41  | 
val zdvd_int = @{thm "zdvd_int"};
 | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
42  | 
val zdiff_int_split = @{thm "zdiff_int_split"};
 | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
43  | 
val all_nat = @{thm "all_nat"};
 | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
44  | 
val ex_nat = @{thm "ex_nat"};
 | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
45  | 
val split_zdiv = @{thm "split_zdiv"};
 | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
46  | 
val split_zmod = @{thm "split_zmod"};
 | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
47  | 
val mod_div_equality' = @{thm "mod_div_equality'"};
 | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
48  | 
val split_div' = @{thm "split_div'"};
 | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
49  | 
val imp_le_cong = @{thm "imp_le_cong"};
 | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
50  | 
val conj_le_cong = @{thm "conj_le_cong"};
 | 
| 30224 | 51  | 
val mod_add_eq = @{thm "mod_add_eq"} RS sym;
 | 
| 30034 | 52  | 
val mod_add_left_eq = @{thm "mod_add_left_eq"} RS sym;
 | 
53  | 
val mod_add_right_eq = @{thm "mod_add_right_eq"} RS sym;
 | 
|
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
54  | 
val nat_div_add_eq = @{thm "div_add1_eq"} RS sym;
 | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
55  | 
val int_div_add_eq = @{thm "zdiv_zadd1_eq"} RS sym;
 | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
56  | 
|
| 27456 | 57  | 
fun prepare_for_mir thy q fm =  | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
58  | 
let  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
59  | 
val ps = Logic.strip_params fm  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
60  | 
val hs = map HOLogic.dest_Trueprop (Logic.strip_assums_hyp fm)  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
61  | 
val c = HOLogic.dest_Trueprop (Logic.strip_assums_concl fm)  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
62  | 
fun mk_all ((s, T), (P,n)) =  | 
| 
42083
 
e1209fc7ecdc
added Term.is_open and Term.is_dependent convenience, to cover common situations of loose bounds;
 
wenzelm 
parents: 
39159 
diff
changeset
 | 
63  | 
if Term.is_dependent P then  | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
64  | 
(HOLogic.all_const T $ Abs (s, T, P), n)  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
65  | 
else (incr_boundvars ~1 P, n-1)  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
66  | 
fun mk_all2 (v, t) = HOLogic.all_const (fastype_of v) $ lambda v t;  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
67  | 
val rhs = hs  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
68  | 
(* val (rhs,irhs) = List.partition (relevant (rev ps)) hs *)  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
69  | 
val np = length ps  | 
| 
33004
 
715566791eb0
always qualify NJ's old List.foldl/foldr in Isabelle/ML;
 
wenzelm 
parents: 
32740 
diff
changeset
 | 
70  | 
val (fm',np) = List.foldr (fn ((x, T), (fm,n)) => mk_all ((x, T), (fm,n)))  | 
| 
 
715566791eb0
always qualify NJ's old List.foldl/foldr in Isabelle/ML;
 
wenzelm 
parents: 
32740 
diff
changeset
 | 
71  | 
(List.foldr HOLogic.mk_imp c rhs, np) ps  | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
72  | 
val (vs, _) = List.partition (fn t => q orelse (type_of t) = nT)  | 
| 44121 | 73  | 
(Misc_Legacy.term_frees fm' @ Misc_Legacy.term_vars fm');  | 
| 
33004
 
715566791eb0
always qualify NJ's old List.foldl/foldr in Isabelle/ML;
 
wenzelm 
parents: 
32740 
diff
changeset
 | 
74  | 
val fm2 = List.foldr mk_all2 fm' vs  | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
75  | 
in (fm2, np + length vs, length rhs) end;  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
76  | 
|
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
77  | 
(*Object quantifier to meta --*)  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
78  | 
fun spec_step n th = if (n=0) then th else (spec_step (n-1) th) RS spec ;  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
79  | 
|
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
80  | 
(* object implication to meta---*)  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
81  | 
fun mp_step n th = if (n=0) then th else (mp_step (n-1) th) RS mp;  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
82  | 
|
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
83  | 
|
| 
42368
 
3b8498ac2314
proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
 
wenzelm 
parents: 
42364 
diff
changeset
 | 
84  | 
fun mir_tac ctxt q =  | 
| 
 
3b8498ac2314
proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
 
wenzelm 
parents: 
42364 
diff
changeset
 | 
85  | 
Object_Logic.atomize_prems_tac  | 
| 45654 | 86  | 
        THEN' simp_tac (HOL_basic_ss addsimps [@{thm "abs_ge_zero"}] addsimps @{thms simp_thms})
 | 
| 
42368
 
3b8498ac2314
proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
 
wenzelm 
parents: 
42364 
diff
changeset
 | 
87  | 
        THEN' (REPEAT_DETERM o split_tac [@{thm "split_min"}, @{thm "split_max"}, @{thm "abs_split"}])
 | 
| 
 
3b8498ac2314
proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
 
wenzelm 
parents: 
42364 
diff
changeset
 | 
88  | 
THEN' SUBGOAL (fn (g, i) =>  | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
89  | 
let  | 
| 42361 | 90  | 
val thy = Proof_Context.theory_of ctxt  | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
91  | 
(* Transform the term*)  | 
| 27456 | 92  | 
val (t,np,nh) = prepare_for_mir thy q g  | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
93  | 
(* Some simpsets for dealing with mod div abs and nat*)  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
94  | 
val mod_div_simpset = HOL_basic_ss  | 
| 30224 | 95  | 
addsimps [refl, mod_add_eq,  | 
| 47142 | 96  | 
                                  @{thm mod_self},
 | 
97  | 
                                  @{thm div_0}, @{thm mod_0},
 | 
|
| 30031 | 98  | 
                                  @{thm "div_by_1"}, @{thm "mod_by_1"}, @{thm "div_1"}, @{thm "mod_1"},
 | 
| 31790 | 99  | 
                                  @{thm "Suc_eq_plus1"}]
 | 
| 28290 | 100  | 
                        addsimps @{thms add_ac}
 | 
| 43594 | 101  | 
                        addsimprocs [@{simproc cancel_div_mod_nat}, @{simproc cancel_div_mod_int}]
 | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
102  | 
val simpset0 = HOL_basic_ss  | 
| 31790 | 103  | 
      addsimps [mod_div_equality', @{thm Suc_eq_plus1}]
 | 
| 23318 | 104  | 
addsimps comp_ths  | 
| 
45620
 
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
 
wenzelm 
parents: 
44121 
diff
changeset
 | 
105  | 
|> fold Splitter.add_split  | 
| 
 
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
 
wenzelm 
parents: 
44121 
diff
changeset
 | 
106  | 
          [@{thm "split_zdiv"}, @{thm "split_zmod"}, @{thm "split_div'"},
 | 
| 
 
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
 
wenzelm 
parents: 
44121 
diff
changeset
 | 
107  | 
            @{thm "split_min"}, @{thm "split_max"}]
 | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
108  | 
(* Simp rules for changing (n::int) to int n *)  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
109  | 
val simpset1 = HOL_basic_ss  | 
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
45654 
diff
changeset
 | 
110  | 
      addsimps [@{thm "zdvd_int"}] @ map (fn r => r RS sym)
 | 
| 23381 | 111  | 
        [@{thm "int_int_eq"}, @{thm "zle_int"}, @{thm "zless_int"}, @{thm "zadd_int"}, 
 | 
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
45654 
diff
changeset
 | 
112  | 
         @{thm nat_numeral}, @{thm "zmult_int"}]
 | 
| 
45620
 
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
 
wenzelm 
parents: 
44121 
diff
changeset
 | 
113  | 
      |> Splitter.add_split @{thm "zdiff_int_split"}
 | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
114  | 
(*simp rules for elimination of int n*)  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
115  | 
|
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
116  | 
val simpset2 = HOL_basic_ss  | 
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
45654 
diff
changeset
 | 
117  | 
      addsimps [@{thm "nat_0_le"}, @{thm "all_nat"}, @{thm "ex_nat"}, @{thm zero_le_numeral}, 
 | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
45654 
diff
changeset
 | 
118  | 
                @{thm "int_0"}, @{thm "int_1"}]
 | 
| 
45620
 
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
 
wenzelm 
parents: 
44121 
diff
changeset
 | 
119  | 
      |> fold Simplifier.add_cong [@{thm "conj_le_cong"}, @{thm "imp_le_cong"}]
 | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
120  | 
(* simp rules for elimination of abs *)  | 
| 27456 | 121  | 
val ct = cterm_of thy (HOLogic.mk_Trueprop t)  | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
122  | 
(* Theorem for the nat --> int transformation *)  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
123  | 
val pre_thm = Seq.hd (EVERY  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
124  | 
[simp_tac mod_div_simpset 1, simp_tac simpset0 1,  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
125  | 
TRY (simp_tac simpset1 1), TRY (simp_tac simpset2 1), TRY (simp_tac mir_ss 1)]  | 
| 36945 | 126  | 
(Thm.trivial ct))  | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
127  | 
fun assm_tac i = REPEAT_DETERM_N nh (assume_tac i)  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
128  | 
(* The result of the quantifier elimination *)  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
129  | 
val (th, tac) = case (prop_of pre_thm) of  | 
| 38558 | 130  | 
        Const ("==>", _) $ (Const (@{const_name Trueprop}, _) $ t1) $ _ =>
 | 
| 28290 | 131  | 
let val pth =  | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
132  | 
(* If quick_and_dirty then run without proof generation as oracle*)  | 
| 28290 | 133  | 
if !quick_and_dirty  | 
134  | 
then mirfr_oracle (false, cterm_of thy (Pattern.eta_long [] t1))  | 
|
135  | 
else mirfr_oracle (true, cterm_of thy (Pattern.eta_long [] t1))  | 
|
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
136  | 
in  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
137  | 
          (trace_msg ("calling procedure with term:\n" ^
 | 
| 
26939
 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 
wenzelm 
parents: 
25481 
diff
changeset
 | 
138  | 
Syntax.string_of_term ctxt t1);  | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
139  | 
((pth RS iffD2) RS pre_thm,  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
140  | 
assm_tac (i + 1) THEN (if q then I else TRY) (rtac TrueI i)))  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
141  | 
end  | 
| 
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
142  | 
| _ => (pre_thm, assm_tac i)  | 
| 
42368
 
3b8498ac2314
proper subgoal addressing via SUBGOAL/CSUBGOAL -- assuming these tactics did not handle Subscript in any special way;
 
wenzelm 
parents: 
42364 
diff
changeset
 | 
143  | 
in rtac (((mp_step nh) o (spec_step np)) th) i THEN tac end);  | 
| 
23264
 
324622260d29
Added twe Examples for Quantifier elimination ofer linear real arithmetic and over the mixed theory of linear real artihmetic with integers
 
chaieb 
parents:  
diff
changeset
 | 
144  | 
|
| 
23590
 
ad95084a5c63
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
 
wenzelm 
parents: 
23381 
diff
changeset
 | 
145  | 
end  |