Skip to content

Commit

Permalink
Remove debug print statements from tactic
Browse files Browse the repository at this point in the history
  • Loading branch information
jvanbruegge committed Sep 26, 2024
1 parent 087af5b commit ef74954
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Tools/mrbnf_sugar.ML
Original file line number Diff line number Diff line change
Expand Up @@ -295,12 +295,10 @@ fun create_binder_datatype (spec : spec) lthy =
REPEAT_DETERM o (assume_tac ctxt ORELSE' resolve_tac ctxt @{thms UNIV_I UN_I singletonI TrueI}),
IF_UNSOLVED o EVERY' [
etac ctxt @{thm contrapos_pp},
K (print_tac ctxt "bar"),
K (Local_Defs.unfold0_tac ctxt @{thms Un_iff de_Morgan_disj}),
REPEAT_DETERM o etac ctxt conjE,
assume_tac ctxt,
TRY o rtac ctxt @{thm UNIV_I},
K (print_tac ctxt "foo")
TRY o rtac ctxt @{thm UNIV_I}
],
IF_UNSOLVED o K no_tac
])) prems)
Expand Down

0 comments on commit ef74954

Please sign in to comment.