Skip to content

Commit

Permalink
Update value.ml
Browse files Browse the repository at this point in the history
  • Loading branch information
marcpouzet committed Nov 10, 2024
1 parent b9c5480 commit b271150
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/zrun/value.ml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,17 @@ and ('info, 'ienv) pvalue =
(* the set of mutually recursive function definitions *)
}

(* to do: replace the last three entries which refers to the source *)
(* by a functional value *)
(*
| Vnode of
{ s: ('info, 'ienv) state;
step : ('info, 'ienv) state -> ('info, 'ienv) value ->
(('info, 'ienv) value * ('info, 'ienv) state) result }
| Vsizefun of { sizes: int list option;
f : int -> ('info, 'ienv) value }
*)

and 'a array =
| Vflat : 'a Array.t -> 'a array
| Vmap : 'a map -> 'a array
Expand Down

0 comments on commit b271150

Please sign in to comment.