3 Description: Symbols' information in faust.
5 Created: 05/08/2013 Modified: 05/08/2013
10 exception Symbol_error of string;;
13 let delay_memory_length = 100000;;
14 let rdtable_memory_length = 100000;;
15 let vectorize_memory_length = 1000;;
17 let dimension_of_symbol : symbol -> int * int =
49 let delay_of_symbol : symbol -> int =
59 |Delay -> delay_memory_length
67 |Rdtable -> rdtable_memory_length
73 |Vectorize -> vectorize_memory_length
81 let string_of_symbol : symbol -> string =
102 |Smaller -> "Smaller"
105 |Vectorize -> "Vectorize"
106 |Vconcat -> "Vconcat"
108 |Serialize -> "Serialize"
110 |Select2 -> "Select2"
111 |Select3 -> "Select3";;