aboutsummaryrefslogtreecommitdiffhomepage
path: root/proofs
diff options
context:
space:
mode:
authorGravatar Matthieu Sozeau <mattam@mattam.org>2016-10-22 11:03:13 +0200
committerGravatar Matthieu Sozeau <mattam@mattam.org>2016-10-22 11:32:12 +0200
commitbe11ab322fa73804118738e7a08e9910fdf4600d (patch)
tree33373d0bb32d4e46a10556a5b53436fb884f337c /proofs
parentc9f8f7fe182decedda2e6403d502fda3aff24a6e (diff)
Renamings to avoid confusion deprecating old names
reconsider_conv_pbs -> reconsider_unif_constraints consider_remaining_unif_problems -> solve_unif_constraints_with_heuristics
Diffstat (limited to 'proofs')
-rw-r--r--proofs/refine.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/proofs/refine.ml b/proofs/refine.ml
index 2f2142890..3f5527060 100644
--- a/proofs/refine.ml
+++ b/proofs/refine.ml
@@ -157,6 +157,6 @@ end }
let solve_constraints =
let open Proofview in
tclENV >>= fun env -> tclEVARMAP >>= fun sigma ->
- try let sigma = Evarconv.consider_remaining_unif_problems env sigma in
+ try let sigma = Evarconv.solve_unif_constraints_with_heuristics env sigma in
Unsafe.tclEVARSADVANCE sigma
with e -> tclZERO e