-
Notifications
You must be signed in to change notification settings - Fork 1
/
lambda.mli
32 lines (25 loc) · 976 Bytes
/
lambda.mli
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
type term =
Const of string
| App of term * term
| Abstr of string * term
| Var of int
(** Parse un lambda-terme *)
val term : string -> term
(** Transforme un lambda-terme en chaine de caractère *)
val term_to_string : term -> string
(** Fonctions d'impressions *)
val print_term : Format.formatter -> term -> unit
val print_out : term -> unit
(** alpha conversion *)
val alpha : term -> term
(** beta reduction *)
val beta : (term -> term) -> term -> term
(** stratégies de réduction *)
val call_by_name : term -> term
val call_by_value : term -> term
(** [red n str] réduit jusqu'à la limite n le terme str en utilisant
la stratégie d'appel par nom (call-by-name) / externe gauche (leftmost_outermost) *)
val red : int -> string -> term list
(** [red_eager n str] réduit au maximum n fois le terme str en utilisant
la stratégie applicative (call-by-value) / interne gauche (leftmost_innermost) *)
val red_eager : int -> string -> term list