src/HOL/Decision_Procs/ferrack_tac.ML
changeset 29823 0ab754d13ccd
parent 29788 1b80ebe713a4
child 29948 cdf12a1cb963
equal deleted inserted replaced
29822:c45845743f04 29823:0ab754d13ccd
       
     1 (*  Title:      HOL/Reflection/ferrack_tac.ML
       
     2     Author:     Amine Chaieb, TU Muenchen
       
     3 *)
       
     4 
       
     5 structure Ferrack_Tac =
       
     6 struct
       
     7 
       
     8 val trace = ref false;
       
     9 fun trace_msg s = if !trace then tracing s else ();
       
    10 
       
    11 val ferrack_ss = let val ths = [@{thm real_of_int_inject}, @{thm real_of_int_less_iff}, 
       
    12 				@{thm real_of_int_le_iff}]
       
    13 	     in @{simpset} delsimps ths addsimps (map (fn th => th RS sym) ths)
       
    14 	     end;
       
    15 
       
    16 val binarith =
       
    17   @{thms normalize_bin_simps} @ @{thms pred_bin_simps} @ @{thms succ_bin_simps} @
       
    18   @{thms add_bin_simps} @ @{thms minus_bin_simps} @  @{thms mult_bin_simps};
       
    19 val comp_arith = binarith @ simp_thms
       
    20 
       
    21 val zdvd_int = @{thm zdvd_int};
       
    22 val zdiff_int_split = @{thm zdiff_int_split};
       
    23 val all_nat = @{thm all_nat};
       
    24 val ex_nat = @{thm ex_nat};
       
    25 val number_of1 = @{thm number_of1};
       
    26 val number_of2 = @{thm number_of2};
       
    27 val split_zdiv = @{thm split_zdiv};
       
    28 val split_zmod = @{thm split_zmod};
       
    29 val mod_div_equality' = @{thm mod_div_equality'};
       
    30 val split_div' = @{thm split_div'};
       
    31 val Suc_plus1 = @{thm Suc_plus1};
       
    32 val imp_le_cong = @{thm imp_le_cong};
       
    33 val conj_le_cong = @{thm conj_le_cong};
       
    34 val nat_mod_add_eq = @{thm mod_add1_eq} RS sym;
       
    35 val nat_mod_add_left_eq = @{thm mod_add_left_eq} RS sym;
       
    36 val nat_mod_add_right_eq = @{thm mod_add_right_eq} RS sym;
       
    37 val int_mod_add_eq = @{thm zmod_zadd1_eq} RS sym;
       
    38 val int_mod_add_left_eq = @{thm zmod_zadd_left_eq} RS sym;
       
    39 val int_mod_add_right_eq = @{thm zmod_zadd_right_eq} RS sym;
       
    40 val nat_div_add_eq = @{thm div_add1_eq} RS sym;
       
    41 val int_div_add_eq = @{thm zdiv_zadd1_eq} RS sym;
       
    42 val ZDIVISION_BY_ZERO_MOD = @{thm DIVISION_BY_ZERO} RS conjunct2;
       
    43 val ZDIVISION_BY_ZERO_DIV = @{thm DIVISION_BY_ZERO} RS conjunct1;
       
    44 
       
    45 fun prepare_for_linr sg q fm = 
       
    46   let
       
    47     val ps = Logic.strip_params fm
       
    48     val hs = map HOLogic.dest_Trueprop (Logic.strip_assums_hyp fm)
       
    49     val c = HOLogic.dest_Trueprop (Logic.strip_assums_concl fm)
       
    50     fun mk_all ((s, T), (P,n)) =
       
    51       if 0 mem loose_bnos P then
       
    52         (HOLogic.all_const T $ Abs (s, T, P), n)
       
    53       else (incr_boundvars ~1 P, n-1)
       
    54     fun mk_all2 (v, t) = HOLogic.all_const (fastype_of v) $ lambda v t;
       
    55       val rhs = hs
       
    56 (*    val (rhs,irhs) = List.partition (relevant (rev ps)) hs *)
       
    57     val np = length ps
       
    58     val (fm',np) =  foldr (fn ((x, T), (fm,n)) => mk_all ((x, T), (fm,n)))
       
    59       (foldr HOLogic.mk_imp c rhs, np) ps
       
    60     val (vs, _) = List.partition (fn t => q orelse (type_of t) = HOLogic.natT)
       
    61       (OldTerm.term_frees fm' @ OldTerm.term_vars fm');
       
    62     val fm2 = foldr mk_all2 fm' vs
       
    63   in (fm2, np + length vs, length rhs) end;
       
    64 
       
    65 (*Object quantifier to meta --*)
       
    66 fun spec_step n th = if (n=0) then th else (spec_step (n-1) th) RS spec ;
       
    67 
       
    68 (* object implication to meta---*)
       
    69 fun mp_step n th = if (n=0) then th else (mp_step (n-1) th) RS mp;
       
    70 
       
    71 
       
    72 fun linr_tac ctxt q i = 
       
    73     (ObjectLogic.atomize_prems_tac i) 
       
    74 	THEN (REPEAT_DETERM (split_tac [@{thm split_min}, @{thm split_max}, @{thm abs_split}] i))
       
    75 	THEN (fn st =>
       
    76   let
       
    77     val g = List.nth (prems_of st, i - 1)
       
    78     val thy = ProofContext.theory_of ctxt
       
    79     (* Transform the term*)
       
    80     val (t,np,nh) = prepare_for_linr thy q g
       
    81     (* Some simpsets for dealing with mod div abs and nat*)
       
    82     val simpset0 = Simplifier.theory_context thy HOL_basic_ss addsimps comp_arith
       
    83     val ct = cterm_of thy (HOLogic.mk_Trueprop t)
       
    84     (* Theorem for the nat --> int transformation *)
       
    85    val pre_thm = Seq.hd (EVERY
       
    86       [simp_tac simpset0 1,
       
    87        TRY (simp_tac (Simplifier.theory_context thy ferrack_ss) 1)]
       
    88       (trivial ct))
       
    89     fun assm_tac i = REPEAT_DETERM_N nh (assume_tac i)
       
    90     (* The result of the quantifier elimination *)
       
    91     val (th, tac) = case (prop_of pre_thm) of
       
    92         Const ("==>", _) $ (Const ("Trueprop", _) $ t1) $ _ =>
       
    93     let val pth = linr_oracle (cterm_of thy (Pattern.eta_long [] t1))
       
    94     in 
       
    95           (trace_msg ("calling procedure with term:\n" ^
       
    96              Syntax.string_of_term ctxt t1);
       
    97            ((pth RS iffD2) RS pre_thm,
       
    98             assm_tac (i + 1) THEN (if q then I else TRY) (rtac TrueI i)))
       
    99     end
       
   100       | _ => (pre_thm, assm_tac i)
       
   101   in (rtac (((mp_step nh) o (spec_step np)) th) i 
       
   102       THEN tac) st
       
   103   end handle Subscript => no_tac st);
       
   104 
       
   105 fun linr_meth src =
       
   106   Method.syntax (Args.mode "no_quantify") src
       
   107   #> (fn (q, ctxt) => Method.SIMPLE_METHOD' (linr_tac ctxt (not q)));
       
   108 
       
   109 val setup =
       
   110   Method.add_method ("rferrack", linr_meth,
       
   111      "decision procedure for linear real arithmetic");
       
   112 
       
   113 end