2 <link rel=
"stylesheet" href=
"style.css" type=
"text/css">
3 <meta content=
"text/html; charset=iso-8859-1" http-equiv=
"Content-Type">
4 <link rel=
"Start" href=
"index.html">
5 <link title=
"Index of types" rel=Appendix
href=
"index_types.html">
6 <link title=
"Index of exceptions" rel=Appendix
href=
"index_exceptions.html">
7 <link title=
"Index of values" rel=Appendix
href=
"index_values.html">
8 <link title=
"Index of modules" rel=Appendix
href=
"index_modules.html">
9 <link title=
"Types" rel=
"Chapter" href=
"Types.html">
10 <link title=
"Parser" rel=
"Chapter" href=
"Parser.html">
11 <link title=
"Lexer" rel=
"Chapter" href=
"Lexer.html">
12 <link title=
"Value" rel=
"Chapter" href=
"Value.html">
13 <link title=
"Signal" rel=
"Chapter" href=
"Signal.html">
14 <link title=
"Faustexp" rel=
"Chapter" href=
"Faustexp.html">
15 <link title=
"Interpreter" rel=
"Chapter" href=
"Interpreter.html">
16 <link title=
"Preprocess" rel=
"Chapter" href=
"Preprocess.html">
17 <link title=
"Main" rel=
"Chapter" href=
"Main.html"><title>Interpreter.computing
</title>
20 <code class=
"code"><span class=
"keyword">let
</span> computing
=
<span class=
"keyword">fun
</span> f
<span class=
"keywordsign">-
></span> <span class=
"keyword">fun
</span> width
<span class=
"keywordsign">-
></span> <span class=
"keyword">fun
</span> length
<span class=
"keywordsign">-
></span><br>
21 <span class=
"keyword">let
</span> container_float_array_array_array
=
<br>
22 ref
(
<span class=
"constructor">Array
</span>.make
length
(
<span class=
"constructor">Array
</span>.make
width
[||]))
<span class=
"keyword">in
</span><br>
23 <span class=
"keyword">let
</span> index
=
ref
0 <span class=
"keyword">in
</span><br>
25 <span class=
"keyword">try
</span><br>
26 <span class=
"keyword">while
</span> !index
< length
<span class=
"keyword">do
</span><br>
27 (!container_float_array_array_array).(!index)
<br>
28 <-
(
<span class=
"constructor">Array
</span>.map
convert_back_R
(f
(!index)));
<br>
29 incr
index;
<br>
30 <span class=
"keyword">done
</span>;
<br>
31 !container_float_array_array_array
<br>
33 <span class=
"keyword">with
</span> x
<span class=
"keywordsign">-
></span><br>
34 <span class=
"keyword">let
</span> error_message
=
<br>
35 <span class=
"keyword">match
</span> x
<span class=
"keyword">with
</span><br>
36 <span class=
"keywordsign">|
</span><span class=
"constructor">Convert_Error
</span> s
<span class=
"keywordsign">-
></span> <span class=
"string">"Convert_Error: "</span> ^
s
<br>
37 <span class=
"keywordsign">|
</span><span class=
"constructor">Value_operation
</span> s
<span class=
"keywordsign">-
></span> <span class=
"string">"Value_operation: "</span> ^
s
<br>
38 <span class=
"keywordsign">|
</span><span class=
"constructor">Signal_operation
</span> s
<span class=
"keywordsign">-
></span> <span class=
"string">"Signal_operation: "</span> ^
s
<br>
39 <span class=
"keywordsign">|
</span><span class=
"constructor">Beam_Matching_Error
</span> s
<span class=
"keywordsign">-
></span> <span class=
"string">"Beam_Matching_Error: "</span> ^
s
<br>
40 <span class=
"keywordsign">|
</span><span class=
"constructor">Evaluation_Error
</span> s
<span class=
"keywordsign">-
></span> <span class=
"string">"Evaluation_Error: "</span> ^
s
<br>
41 <span class=
"keywordsign">|
</span><span class=
"constructor">NotYetDone
</span> <span class=
"keywordsign">-
></span> <span class=
"string">"NotYetDone"</span><br>
42 <span class=
"keywordsign">|
</span>_
<span class=
"keywordsign">-
></span> <span class=
"string">"Compute finished."</span><br>
43 <span class=
"keyword">in
</span><br>
44 <span class=
"keyword">let
</span> ()
=
print_endline
error_message
<span class=
"keyword">in
</span><br>
45 <span class=
"constructor">Array
</span>.sub
(!container_float_array_array_array)
0 !index
</code></body></html>