aboutsummaryrefslogtreecommitdiffhomepage
path: root/pretyping/pretype_errors.ml
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2016-11-05 21:36:40 +0100
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2017-02-14 17:23:53 +0100
commitb7fd585b89ac5e0b7770f52739c33fe179f2eed8 (patch)
tree83ab6fe2ccecb503691c9842ba7eec27690ad975 /pretyping/pretype_errors.ml
parent147afe827dc83602cc160a8b1357e84ecea910ff (diff)
Evarsolve API using EConstr.
Diffstat (limited to 'pretyping/pretype_errors.ml')
-rw-r--r--pretyping/pretype_errors.ml8
1 files changed, 4 insertions, 4 deletions
diff --git a/pretyping/pretype_errors.ml b/pretyping/pretype_errors.ml
index f28fb84ba..c14d81505 100644
--- a/pretyping/pretype_errors.ml
+++ b/pretyping/pretype_errors.ml
@@ -13,14 +13,14 @@ open Environ
open Type_errors
type unification_error =
- | OccurCheck of existential_key * constr
- | NotClean of existential * env * constr (* Constr is a variable not in scope *)
+ | OccurCheck of existential_key * EConstr.constr
+ | NotClean of EConstr.existential * env * EConstr.constr (* Constr is a variable not in scope *)
| NotSameArgSize
| NotSameHead
| NoCanonicalStructure
- | ConversionFailed of env * constr * constr (* Non convertible closed terms *)
+ | ConversionFailed of env * EConstr.constr * EConstr.constr (* Non convertible closed terms *)
| MetaOccurInBody of existential_key
- | InstanceNotSameType of existential_key * env * types * types
+ | InstanceNotSameType of existential_key * env * EConstr.types * EConstr.types
| UnifUnivInconsistency of Univ.univ_inconsistency
| CannotSolveConstraint of Evd.evar_constraint * unification_error
| ProblemBeyondCapabilities