Skip to content

Commit

Permalink
feat(tactic/wlog): discharger defaults to classical tauto
Browse files Browse the repository at this point in the history
  • Loading branch information
cipher1024 committed Mar 19, 2019
1 parent d60d161 commit 2d0ddf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tactic/wlog.lean
Expand Up @@ -156,7 +156,7 @@ meta def wlog
(cases : parse (tk ":=" *> texpr)?)
(perms : parse (tk "using" *> (list_of (ident*) <|> (λx, [x]) <$> ident*))?)
(discharger : tactic unit :=
(tactic.solve_by_elim <|> tactic.tautology <|> using_smt (smt_tactic.intros >> smt_tactic.solve_goals))) :
(tactic.solve_by_elim <|> tactic.tautology tt <|> using_smt (smt_tactic.intros >> smt_tactic.solve_goals))) :
tactic unit := do
perms ← parse_permutations perms,
(pat, cases_pr, cases_goal, vars, perms) ← (match cases with
Expand Down

0 comments on commit 2d0ddf7

Please sign in to comment.