X-Git-Url: https://scm.cri.ensmp.fr/git/Faustine.git/blobdiff_plain/440ca0ba93966e89b68dc54207c461afc0d56264..23922b6f3a5f9813b822b4c60f05c8f2e384b070:/interpretor/types.ml diff --git a/interpretor/types.ml b/interpretor/types.ml index ba61990..5e88a1a 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 length : int - method sub : start: int -> length: int -> beam_type + method get : signal_type array + method width : int + 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 at : time -> value_type array + method output : int -> value_type array array end;; @@ -129,14 +131,18 @@ class type dimension_type = object method input : int method output : int + method par : dimension_type -> dimension_type + method seq : dimension_type -> dimension_type + method split : dimension_type -> dimension_type + method merge : dimension_type -> dimension_type + method _rec : dimension_type -> dimension_type end;; -class type expression_type = +class type process_type = object - method get_exp : faust_exp - method get_dim : dimension_type - method get_delay : int - method to_string : string + method exp : faust_exp + method dim : dimension_type + method delay : int method evaluate : beam_type -> beam_type end;;