diff options
author | Maxime Dénès <mail@maximedenes.fr> | 2017-11-30 15:54:12 +0100 |
---|---|---|
committer | Maxime Dénès <mail@maximedenes.fr> | 2017-11-30 15:54:12 +0100 |
commit | 0bb126dae41b410fdf4f6531024c64cac20dac06 (patch) | |
tree | cc3a9c0d8133eae3902b3a441246d50c48f02436 /API | |
parent | ee45637ac2431fe2df1994f2337d8801e2aeff9a (diff) | |
parent | 08da05299d32886bb516124fa497347b40249006 (diff) |
Merge PR #6274: Attempt to fix inversion disregarding singleton types (fixes #3125)
Diffstat (limited to 'API')
-rw-r--r-- | API/API.mli | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/API/API.mli b/API/API.mli index 1a84600ec..2eb7c4736 100644 --- a/API/API.mli +++ b/API/API.mli @@ -3712,7 +3712,7 @@ end module Retyping : (* reconstruct the type of a term knowing that it was already typechecked *) sig val get_type_of : ?polyprop:bool -> ?lax:bool -> Environ.env -> Evd.evar_map -> EConstr.constr -> EConstr.types - val get_sort_family_of : ?polyprop:bool -> Environ.env -> Evd.evar_map -> EConstr.types -> Sorts.family + val get_sort_family_of : ?truncation_style:bool -> ?polyprop:bool -> Environ.env -> Evd.evar_map -> EConstr.types -> Sorts.family val expand_projection : Environ.env -> Evd.evar_map -> Names.Projection.t -> EConstr.constr -> EConstr.constr list -> EConstr.constr val get_sort_of : ?polyprop:bool -> Environ.env -> Evd.evar_map -> EConstr.types -> Sorts.t |