slight tuning
authorChristian Urban <urbanc@in.tum.de>
Thu, 22 Oct 2009 01:15:01 +0200
changeset 146 6e9e3cba4be9
parent 145 881600d5ff1e
child 147 f8a35cf814de
slight tuning
QuotMain.thy
--- a/QuotMain.thy	Wed Oct 21 18:30:42 2009 +0200
+++ b/QuotMain.thy	Thu Oct 22 01:15:01 2009 +0200
@@ -659,7 +659,7 @@
        let 
           val ty1 = fastype_of trm
        in
-         (mk_babs ty1 T) $ (mk_resp T $ rel) $ (apply_subt (my_reg rel) (Abs (x, T, t)))    
+         (mk_babs ty1 T) $ (mk_resp T $ rel) $ (apply_subt (my_reg rel) trm)    
        end
   | Const (@{const_name "All"}, ty) $ t =>
        let 
@@ -1009,13 +1009,13 @@
   done
 
 ML {*
-fun instantiate_tac thm = (Subgoal.FOCUS (fn {concl, context, ...} =>
+fun instantiate_tac thm = Subgoal.FOCUS (fn {concl, context, ...} =>
 let
- val pat = cterm_of (ProofContext.theory_of context) (concl_of thm)
- val insts = Thm.match (pat, concl)
+  val pat = Drule.strip_imp_concl (cprop_of thm)
+  val insts = Thm.match (pat, concl)
 in
- rtac (Drule.instantiate insts thm) 1
-end))
+  rtac (Drule.instantiate insts thm) 1
+end)
 *}