aboutsummaryrefslogtreecommitdiff
path: root/tactics
diff options
context:
space:
mode:
authorGaëtan Gilbert2020-02-27 14:06:16 +0100
committerGaëtan Gilbert2020-03-31 14:39:43 +0200
commit699152de685ba5e2dc05fd6248b17c3139987bb7 (patch)
tree63cd99709c431fc6cb73886622bff9f22457be9e /tactics
parentf19cf4259f63a9c0392c922527e0e9002192949e (diff)
Try only using TC for conversion in cominductive (not great but let's see)
Diffstat (limited to 'tactics')
-rw-r--r--tactics/tactics.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/tactics.ml b/tactics/tactics.ml
index 30ca024a2f..c79aca3d3c 100644
--- a/tactics/tactics.ml
+++ b/tactics/tactics.ml
@@ -1223,7 +1223,7 @@ let rec intros_move = function
or a term with bindings *)
let tactic_infer_flags with_evar = {
- Pretyping.use_typeclasses = true;
+ Pretyping.use_typeclasses = Pretyping.UseTC;
Pretyping.solve_unification_constraints = true;
Pretyping.fail_evar = not with_evar;
Pretyping.expand_evars = true;