Skip to content

Commit

Permalink
Merge pull request #612 from SkySkimmer/fix-congruence
Browse files Browse the repository at this point in the history
Fix call to congruence after coq/coq#19032
  • Loading branch information
ppedrot authored Jul 9, 2024
2 parents abed609 + 1bbd487 commit 7863db3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/principles_proofs.ml
Original file line number Diff line number Diff line change
Expand Up @@ -916,7 +916,7 @@ let solve_rec_eq simpltac subst =
[((Locus.OnlyOccurrences [1]), Evaluable.EvalConstRef f_cst);
((Locus.OnlyOccurrences [1]), Evaluable.EvalConstRef funf_cst)]
in tclTHENLIST [unfolds; simpltac; pi_tac ()]
with Not_found -> tclORELSE reflexivity (congruence_tac 10 []))
with Not_found -> tclORELSE reflexivity (congruence_tac (Some 10) []))
| _ -> reflexivity
end

Expand Down

0 comments on commit 7863db3

Please # to comment.