X-Git-Url: https://scm.cri.ensmp.fr/git/Faustine.git/blobdiff_plain/0a259beff10a55b87cdbd1a836f4c01162fdd73d..d6a658d27ada22781784b8e5e47947589c052583:/interpretor/types.ml diff --git a/interpretor/types.ml b/interpretor/types.ml index 352afbe..f8aeeb8 100644 --- a/interpretor/types.ml +++ b/interpretor/types.ml @@ -87,6 +87,15 @@ type faust_exp = | Merge of faust_exp * faust_exp +class type rate_type = + object + method to_int : int + method to_float : float + method equal : rate_type -> bool + method mul : int -> rate_type + method div : int -> rate_type + end + class type signal_type = object method frequency : int