2024-10-20 20:28:44 +02:00
|
|
|
type variable = string
|
|
|
|
|
|
2024-11-06 17:21:14 +01:00
|
|
|
let globalIdentifier = ref 1
|
|
|
|
|
|
2024-10-25 21:29:49 +02:00
|
|
|
module VariableMap = Map.Make(String)
|
2024-10-27 15:37:10 +01:00
|
|
|
module VariableSet = Set.Make(String)
|
2024-10-26 20:22:13 +02:00
|
|
|
|
2024-10-24 15:35:42 +02:00
|
|
|
type ftype =
|
|
|
|
|
IntegerType
|
|
|
|
|
| BooleanType
|
2024-11-15 17:23:04 +01:00
|
|
|
| TupleType of ftype * ftype
|
2024-11-06 17:21:14 +01:00
|
|
|
| PolimorphicType of string
|
2024-11-15 17:23:04 +01:00
|
|
|
| FunctionType of ftype * ftype
|
2024-11-06 17:21:14 +01:00
|
|
|
type fsubstitution = (* goes from polimorphic types to types *)
|
|
|
|
|
ftype VariableMap.t
|
|
|
|
|
type fenvironment = (* goes from variables to types *)
|
|
|
|
|
ftype VariableMap.t
|
|
|
|
|
type typingshape = (* tuple of a simple type environment and a simple type *)
|
|
|
|
|
fenvironment * ftype
|
2024-10-20 20:28:44 +02:00
|
|
|
|
|
|
|
|
type t_exp =
|
2025-01-27 00:18:23 +01:00
|
|
|
Integer of int (* x := a *)
|
|
|
|
|
| Boolean of bool (* v *)
|
|
|
|
|
| Variable of variable (* x *)
|
|
|
|
|
| Tuple of t_exp * t_exp (* (a, b) *)
|
|
|
|
|
| Function of variable * ftype * t_exp (* lambda x: t. x *)
|
|
|
|
|
| Application of t_exp * t_exp (* x x *)
|
|
|
|
|
| Plus of t_exp * t_exp (* x + x *)
|
|
|
|
|
| Minus of t_exp * t_exp (* x - x *)
|
|
|
|
|
| Times of t_exp * t_exp (* x * x *)
|
|
|
|
|
| Division of t_exp * t_exp (* x / x *)
|
|
|
|
|
| Modulo of t_exp * t_exp (* x % x *)
|
|
|
|
|
| Power of t_exp * t_exp (* x ^ x *)
|
|
|
|
|
| PowerMod of t_exp * t_exp * t_exp (* (x ^ x) % x *)
|
|
|
|
|
| Rand of t_exp (* rand(0, x) *)
|
|
|
|
|
| BAnd of t_exp * t_exp (* x && x *)
|
|
|
|
|
| BOr of t_exp * t_exp (* x || x *)
|
|
|
|
|
| BNot of t_exp (* not x *)
|
|
|
|
|
| First of t_exp (* fst x *)
|
|
|
|
|
| Second of t_exp (* scn x *)
|
|
|
|
|
| Cmp of t_exp * t_exp (* x == x *)
|
|
|
|
|
| CmpLess of t_exp * t_exp (* x < x *)
|
|
|
|
|
| CmpLessEq of t_exp * t_exp (* x <= x *)
|
|
|
|
|
| CmpGreater of t_exp * t_exp (* x > x *)
|
|
|
|
|
| CmpGreaterEq of t_exp * t_exp (* x >= x *)
|
|
|
|
|
| IfThenElse of t_exp * t_exp * t_exp (* if b then c else c *)
|
|
|
|
|
| LetIn of variable * t_exp * t_exp (* let x = x in x *)
|
|
|
|
|
| LetFun of variable * variable * ftype * t_exp * t_exp
|
|
|
|
|
(* let rec x. y: t. x in x*)
|
2024-10-20 20:28:44 +02:00
|
|
|
|
2025-01-27 16:28:23 +01:00
|
|
|
type permitted_values =
|
2024-11-15 17:23:04 +01:00
|
|
|
IntegerPermitted of int
|
|
|
|
|
| BooleanPermitted of bool
|
2025-01-27 16:28:23 +01:00
|
|
|
| TuplePermitted of permitted_values * permitted_values
|
2024-10-20 20:28:44 +02:00
|
|
|
| FunctionPermitted of closure
|
|
|
|
|
and closure = {
|
2024-11-15 17:23:04 +01:00
|
|
|
input: variable;
|
2024-10-20 20:28:44 +02:00
|
|
|
body: t_exp;
|
2025-01-27 16:28:23 +01:00
|
|
|
assignments: permitted_values VariableMap.t;
|
2024-10-20 20:28:44 +02:00
|
|
|
recursiveness: variable option
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type memory = {
|
2025-01-27 16:28:23 +01:00
|
|
|
assignments: permitted_values VariableMap.t
|
2024-10-20 20:28:44 +02:00
|
|
|
}
|
|
|
|
|
|
2024-11-16 15:40:00 +01:00
|
|
|
|
|
|
|
|
type base_error = [
|
2024-10-26 01:47:30 +02:00
|
|
|
`AbsentAssignment of string
|
|
|
|
|
| `WrongType of string
|
2024-11-16 15:40:00 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
type typechecking_error = [
|
|
|
|
|
| base_error
|
2024-10-26 01:47:30 +02:00
|
|
|
| `WrongTypeSpecification of string
|
|
|
|
|
]
|
2024-11-16 15:40:00 +01:00
|
|
|
|
|
|
|
|
type error = [
|
|
|
|
|
| base_error
|
|
|
|
|
| `DivisionByZero of string
|
|
|
|
|
]
|