X-Git-Url: https://scm.cri.minesparis.psl.eu/git/Faustine.git/blobdiff_plain/440ca0ba93966e89b68dc54207c461afc0d56264..c4ce4ce8d2dff5817b7caa758655465e34456368:/interpretor/types.ml

diff --git a/interpretor/types.ml b/interpretor/types.ml
index ba61990..d117836 100644
--- a/interpretor/types.ml
+++ b/interpretor/types.ml
@@ -86,6 +86,7 @@ class type signal_type =
     object
       method frequency : int
       method at : time -> value_type
+      method add_memory : int -> unit
       method add : signal_type -> signal_type
       method neg : signal_type
       method sub : signal_type -> signal_type
@@ -116,12 +117,13 @@ class type signal_type =
 
 class type beam_type =
     object
+      method get : signal_type array
       method length : int
-      method sub : start: int -> length: int -> beam_type
+      method sub : int -> int -> beam_type
       method append : beam_type -> beam_type
-      method matching : size: int -> beam_type
-      method time : time -> basic list
-      method output : length: int -> (int list) * (float array list)
+      method matching : int -> beam_type
+      method time : time -> value_type array
+      method output : int -> (int list) * (float array list)
     end;;