aboutsummaryrefslogtreecommitdiff
path: root/tactics
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2019-08-30 15:35:48 +0200
committerPierre-Marie Pédrot2019-08-30 15:35:48 +0200
commit1f74267d7e4affe14dbafc1a6f1e6f3f465f75a8 (patch)
treea51fd4fd1d141994653ff8fcf9669416f4f3cd06 /tactics
parent38aa59e1aa2edeca7dabe4275790295559751e72 (diff)
parentb335fccae5514ef738376354aa619e08bb221d5c (diff)
Merge PR #10714: Solve universe error with SSR 'rewrite !term'
Reviewed-by: ppedrot
Diffstat (limited to 'tactics')
-rw-r--r--tactics/equality.ml4
1 files changed, 3 insertions, 1 deletions
diff --git a/tactics/equality.ml b/tactics/equality.ml
index 220b9bc475..1f125a3c59 100644
--- a/tactics/equality.ml
+++ b/tactics/equality.ml
@@ -255,7 +255,9 @@ let tclNOTSAMEGOAL tac =
Proofview.Goal.goals >>= fun gls ->
let check accu gl' =
gl' >>= fun gl' ->
- let accu = accu || Proofview.Progress.goal_equal sigma ev (project gl') (goal gl') in
+ let accu = accu || Proofview.Progress.goal_equal
+ ~evd:sigma ~extended_evd:(project gl') ev (goal gl')
+ in
Proofview.tclUNIT accu
in
Proofview.Monad.List.fold_left check false gls >>= fun has_same ->