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 =
47 let delay_of_symbol : symbol -> int =
57 |Delay -> delay_memory_length
65 |Rdtable -> rdtable_memory_length
69 |Vectorize -> vectorize_memory_length
77 let string_of_symbol : symbol -> string =
99 |Vectorize -> "Vectorize"
100 |Vconcat -> "Vconcat"
102 |Serialize -> "Serialize"
104 |Select2 -> "Select2"
105 |Select3 -> "Select3";;