blob: c9d7d572c0caeb7ddf60d1f4edd050d0c5a458c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
(************************************************************************)
(* v * The Coq Proof Assistant / The Coq Development Team *)
(* <O___,, * CNRS-Ecole Polytechnique-INRIA Futurs-Universite Paris Sud *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
(*i $Id: typing.mli 6113 2004-09-17 20:28:19Z barras $ i*)
(*i*)
open Term
open Environ
open Evd
(*i*)
(* This module provides the typing machine with existential variables
(but without universes). *)
(* Typecheck a term and return its type *)
val type_of : env -> evar_map -> constr -> types
(* Typecheck a type and return its sort *)
val sort_of : env -> evar_map -> types -> sorts
(* Typecheck a term has a given type (assuming the type is OK *)
val check : env -> evar_map -> constr -> types -> unit
(* The same but with metas... *)
val mtype_of : env -> evar_defs -> constr -> types
val msort_of : env -> evar_defs -> types -> sorts
val mcheck : env -> evar_defs -> constr -> types -> unit
val meta_type : evar_defs -> metavariable -> types
(* unused typing function... *)
val mtype_of_type : env -> evar_defs -> types -> types
|