| author | wenzelm | 
| Thu, 05 Nov 2009 15:55:07 +0100 | |
| changeset 33449 | 9a4b176292ec | 
| parent 33004 | 715566791eb0 | 
| child 35232 | f588e1169c8b | 
| permissions | -rw-r--r-- | 
| 30439 | 1  | 
(* Title: HOL/Decision_Procs/ferrack_tac.ML  | 
| 29788 | 2  | 
Author: Amine Chaieb, TU Muenchen  | 
3  | 
*)  | 
|
4  | 
||
| 31302 | 5  | 
signature FERRACK_TAC =  | 
6  | 
sig  | 
|
| 32740 | 7  | 
val trace: bool Unsynchronized.ref  | 
| 31302 | 8  | 
val linr_tac: Proof.context -> bool -> int -> tactic  | 
9  | 
val setup: theory -> theory  | 
|
10  | 
end  | 
|
11  | 
||
| 29788 | 12  | 
structure Ferrack_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
 | 
13  | 
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
 | 
14  | 
|
| 32740 | 15  | 
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
 | 
16  | 
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
 | 
17  | 
|
| 
26075
 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 
huffman 
parents: 
23590 
diff
changeset
 | 
18  | 
val ferrack_ss = let val ths = [@{thm real_of_int_inject}, @{thm real_of_int_less_iff}, 
 | 
| 
32960
 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 
wenzelm 
parents: 
32740 
diff
changeset
 | 
19  | 
                                @{thm real_of_int_le_iff}]
 | 
| 
 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 
wenzelm 
parents: 
32740 
diff
changeset
 | 
20  | 
             in @{simpset} delsimps ths addsimps (map (fn th => th RS sym) ths)
 | 
| 
 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 
wenzelm 
parents: 
32740 
diff
changeset
 | 
21  | 
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
 | 
22  | 
|
| 
26075
 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 
huffman 
parents: 
23590 
diff
changeset
 | 
23  | 
val binarith =  | 
| 
 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 
huffman 
parents: 
23590 
diff
changeset
 | 
24  | 
  @{thms normalize_bin_simps} @ @{thms pred_bin_simps} @ @{thms succ_bin_simps} @
 | 
| 
 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 
huffman 
parents: 
23590 
diff
changeset
 | 
25  | 
  @{thms add_bin_simps} @ @{thms minus_bin_simps} @  @{thms mult_bin_simps};
 | 
| 23318 | 26  | 
val comp_arith = binarith @ 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
 | 
27  | 
|
| 
26075
 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 
huffman 
parents: 
23590 
diff
changeset
 | 
28  | 
val zdvd_int = @{thm zdvd_int};
 | 
| 
 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 
huffman 
parents: 
23590 
diff
changeset
 | 
29  | 
val zdiff_int_split = @{thm zdiff_int_split};
 | 
| 
 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 
huffman 
parents: 
23590 
diff
changeset
 | 
30  | 
val all_nat = @{thm all_nat};
 | 
| 
 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 
huffman 
parents: 
23590 
diff
changeset
 | 
31  | 
val ex_nat = @{thm ex_nat};
 | 
| 
 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 
huffman 
parents: 
23590 
diff
changeset
 | 
32  | 
val number_of1 = @{thm number_of1};
 | 
| 
 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 
huffman 
parents: 
23590 
diff
changeset
 | 
33  | 
val number_of2 = @{thm number_of2};
 | 
| 
 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 
huffman 
parents: 
23590 
diff
changeset
 | 
34  | 
val split_zdiv = @{thm split_zdiv};
 | 
| 
 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 
huffman 
parents: 
23590 
diff
changeset
 | 
35  | 
val split_zmod = @{thm split_zmod};
 | 
| 
 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 
huffman 
parents: 
23590 
diff
changeset
 | 
36  | 
val mod_div_equality' = @{thm mod_div_equality'};
 | 
| 
 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 
huffman 
parents: 
23590 
diff
changeset
 | 
37  | 
val split_div' = @{thm split_div'};
 | 
| 31790 | 38  | 
val Suc_eq_plus1 = @{thm Suc_eq_plus1};
 | 
| 
26075
 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 
huffman 
parents: 
23590 
diff
changeset
 | 
39  | 
val imp_le_cong = @{thm imp_le_cong};
 | 
| 
 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 
huffman 
parents: 
23590 
diff
changeset
 | 
40  | 
val conj_le_cong = @{thm conj_le_cong};
 | 
| 30034 | 41  | 
val mod_add_left_eq = @{thm mod_add_left_eq} RS sym;
 | 
42  | 
val mod_add_right_eq = @{thm mod_add_right_eq} RS sym;
 | 
|
| 
26075
 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 
huffman 
parents: 
23590 
diff
changeset
 | 
43  | 
val nat_div_add_eq = @{thm div_add1_eq} RS sym;
 | 
| 
 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 
huffman 
parents: 
23590 
diff
changeset
 | 
44  | 
val int_div_add_eq = @{thm zdiv_zadd1_eq} RS sym;
 | 
| 
 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 
huffman 
parents: 
23590 
diff
changeset
 | 
45  | 
val ZDIVISION_BY_ZERO_MOD = @{thm DIVISION_BY_ZERO} RS conjunct2;
 | 
| 
 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 
huffman 
parents: 
23590 
diff
changeset
 | 
46  | 
val ZDIVISION_BY_ZERO_DIV = @{thm DIVISION_BY_ZERO} RS conjunct1;
 | 
| 
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
 | 
47  | 
|
| 
 
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  | 
fun prepare_for_linr sg q 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
 | 
49  | 
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
 | 
50  | 
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
 | 
51  | 
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
 | 
52  | 
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
 | 
53  | 
fun mk_all ((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
 | 
54  | 
if 0 mem loose_bnos P then  | 
| 
 
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  | 
(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
 | 
56  | 
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
 | 
57  | 
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
 | 
58  | 
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
 | 
59  | 
(* 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
 | 
60  | 
val np = length ps  | 
| 
33004
 
715566791eb0
always qualify NJ's old List.foldl/foldr in Isabelle/ML;
 
wenzelm 
parents: 
32960 
diff
changeset
 | 
61  | 
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: 
32960 
diff
changeset
 | 
62  | 
(List.foldr HOLogic.mk_imp c rhs, np) ps  | 
| 27436 | 63  | 
val (vs, _) = List.partition (fn t => q orelse (type_of t) = HOLogic.natT)  | 
| 
29265
 
5b4247055bd7
moved old add_term_vars, add_term_frees etc. to structure OldTerm;
 
wenzelm 
parents: 
28952 
diff
changeset
 | 
64  | 
(OldTerm.term_frees fm' @ OldTerm.term_vars fm');  | 
| 
33004
 
715566791eb0
always qualify NJ's old List.foldl/foldr in Isabelle/ML;
 
wenzelm 
parents: 
32960 
diff
changeset
 | 
65  | 
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
 | 
66  | 
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
 | 
67  | 
|
| 
 
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  | 
(*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
 | 
69  | 
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
 | 
70  | 
|
| 
 
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
 | 
71  | 
(* 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
 | 
72  | 
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
 | 
73  | 
|
| 
 
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
 | 
74  | 
|
| 
 
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  | 
fun linr_tac ctxt q i =  | 
| 
23590
 
ad95084a5c63
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
 
wenzelm 
parents: 
23469 
diff
changeset
 | 
76  | 
(ObjectLogic.atomize_prems_tac i)  | 
| 
32960
 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 
wenzelm 
parents: 
32740 
diff
changeset
 | 
77  | 
        THEN (REPEAT_DETERM (split_tac [@{thm split_min}, @{thm split_max}, @{thm abs_split}] i))
 | 
| 
 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 
wenzelm 
parents: 
32740 
diff
changeset
 | 
78  | 
THEN (fn st =>  | 
| 
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
 | 
79  | 
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
 | 
80  | 
val g = List.nth (prems_of st, i - 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
 | 
81  | 
val thy = ProofContext.theory_of ctxt  | 
| 
 
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  | 
(* Transform the term*)  | 
| 
 
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  | 
val (t,np,nh) = prepare_for_linr thy q g  | 
| 
 
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
 | 
84  | 
(* 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
 | 
85  | 
val simpset0 = Simplifier.theory_context thy HOL_basic_ss addsimps comp_arith  | 
| 
 
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
 | 
86  | 
val ct = cterm_of thy (HOLogic.mk_Trueprop 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
 | 
87  | 
(* 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
 | 
88  | 
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
 | 
89  | 
[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
 | 
90  | 
TRY (simp_tac (Simplifier.theory_context thy ferrack_ss) 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
 | 
91  | 
(trivial ct))  | 
| 
 
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
 | 
92  | 
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
 | 
93  | 
(* 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
 | 
94  | 
val (th, tac) = case (prop_of pre_thm) of  | 
| 
 
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
 | 
95  | 
        Const ("==>", _) $ (Const ("Trueprop", _) $ t1) $ _ =>
 | 
| 28290 | 96  | 
let val pth = linr_oracle (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
 | 
97  | 
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
 | 
98  | 
          (trace_msg ("calling procedure with term:\n" ^
 | 
| 
26939
 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 
wenzelm 
parents: 
26075 
diff
changeset
 | 
99  | 
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
 | 
100  | 
((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
 | 
101  | 
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
 | 
102  | 
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
 | 
103  | 
| _ => (pre_thm, assm_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
 | 
104  | 
in (rtac (((mp_step nh) o (spec_step np)) th) 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
 | 
105  | 
THEN tac) st  | 
| 27436 | 106  | 
end handle Subscript => no_tac st);  | 
| 
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
 | 
107  | 
|
| 
 
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  | 
val setup =  | 
| 31302 | 109  | 
  Method.setup @{binding rferrack}
 | 
110  | 
(Args.mode "no_quantify" >> (fn q => fn ctxt =>  | 
|
111  | 
SIMPLE_METHOD' (linr_tac ctxt (not q))))  | 
|
112  | 
"decision procedure for linear real arithmetic";  | 
|
| 
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
 | 
113  | 
|
| 23469 | 114  | 
end  |