2020-04-08 14:48:14 +00:00
|
|
|
open Deep
|
|
|
|
|
2016-04-10 17:48:58 +00:00
|
|
|
let rec i2n n =
|
|
|
|
match n with
|
|
|
|
| 0 -> O
|
|
|
|
| _ -> S (i2n (n - 1))
|
|
|
|
|
|
|
|
let interp c =
|
|
|
|
let h : (nat, nat) Hashtbl.t = Hashtbl.create 0 in
|
|
|
|
Hashtbl.add h (i2n 0) (i2n 2);
|
|
|
|
Hashtbl.add h (i2n 1) (i2n 1);
|
|
|
|
Hashtbl.add h (i2n 2) (i2n 8);
|
|
|
|
Hashtbl.add h (i2n 3) (i2n 6);
|
|
|
|
|
|
|
|
let rec interp' (c : 'a cmd) : 'a =
|
|
|
|
match c with
|
|
|
|
| Return v -> v
|
|
|
|
| Bind (c1, c2) -> interp' (c2 (interp' c1))
|
|
|
|
| Read a ->
|
|
|
|
Obj.magic (try
|
|
|
|
Hashtbl.find h a
|
|
|
|
with Not_found -> O)
|
|
|
|
| Write (a, v) -> Obj.magic (Hashtbl.replace h a v)
|
|
|
|
|
2016-04-10 19:10:56 +00:00
|
|
|
in h, interp' c
|