equal
deleted
inserted
replaced
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 |