src/Pure/Isar/isar_thy.ML
changeset 8213 a541e261c660
parent 8210 ca3997312f47
child 8227 d67db92897df
equal deleted inserted replaced
8212:419157483fc9 8213:a541e261c660
   352 fun prefer i = ProofHistory.applys (shuffle Method.prefer i);
   352 fun prefer i = ProofHistory.applys (shuffle Method.prefer i);
   353 
   353 
   354 
   354 
   355 (* backward steps *)
   355 (* backward steps *)
   356 
   356 
   357 val tac = ProofHistory.applys o Method.refine_no_facts;
   357 fun tac m = ProofHistory.applys (Method.refine_no_facts m o Proof.assert_backward);
   358 val then_tac = ProofHistory.applys o Method.refine;
   358 fun then_tac m = ProofHistory.applys (Method.refine m o Proof.assert_backward);
   359 
   359 
   360 val proof = ProofHistory.applys o Method.proof o
   360 val proof = ProofHistory.applys o Method.proof o
   361   apsome Comment.ignore_interest o Comment.ignore_interest' o Comment.ignore;
   361   apsome Comment.ignore_interest o Comment.ignore_interest' o Comment.ignore;
   362 
   362 
   363 
   363