Install, Readme and Changes files updated. Documentation removed.
[Faustine.git] / documentation / Interpreter.html
diff --git a/documentation/Interpreter.html b/documentation/Interpreter.html
deleted file mode 100644 (file)
index 973e7ae..0000000
+++ /dev/null
@@ -1,121 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-<link rel="stylesheet" href="style.css" type="text/css">
-<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
-<link rel="Start" href="index.html">
-<link rel="previous" href="Faustexp.html">
-<link rel="next" href="Preprocess.html">
-<link rel="Up" href="index.html">
-<link title="Index of types" rel=Appendix href="index_types.html">
-<link title="Index of exceptions" rel=Appendix href="index_exceptions.html">
-<link title="Index of values" rel=Appendix href="index_values.html">
-<link title="Index of modules" rel=Appendix href="index_modules.html">
-<link title="Types" rel="Chapter" href="Types.html">
-<link title="Parser" rel="Chapter" href="Parser.html">
-<link title="Lexer" rel="Chapter" href="Lexer.html">
-<link title="Value" rel="Chapter" href="Value.html">
-<link title="Signal" rel="Chapter" href="Signal.html">
-<link title="Faustexp" rel="Chapter" href="Faustexp.html">
-<link title="Interpreter" rel="Chapter" href="Interpreter.html">
-<link title="Preprocess" rel="Chapter" href="Preprocess.html">
-<link title="Main" rel="Chapter" href="Main.html"><title>Interpreter</title>
-</head>
-<body>
-<div class="navbar"><a href="Faustexp.html">Previous</a>
-&nbsp;<a href="index.html">Up</a>
-&nbsp;<a href="Preprocess.html">Next</a>
-</div>
-<center><h1>Module <a href="type_Interpreter.html">Interpreter</a></h1></center>
-<br>
-<pre><span class="keyword">module</span> Interpreter: <code class="code">sig</code> <a href="Interpreter.html">..</a> <code class="code">end</code></pre>Module: Interpreter   
-       Description: input beam -&gt; process -&gt; output beam<br>
-<b>Author(s):</b> WANG Haisheng        
-       Created: 15/05/2013     Modified: 04/06/2013<br>
-<hr width="100%">
-<pre><span id="EXCEPTIONEvaluation_Error"><span class="keyword">exception</span> Evaluation_Error</span> <span class="keyword">of</span> <code class="type">string</code></pre>
-<div class="info">
-Exception raised during interpretation of faust process.<br>
-</div>
-<br><code><span id="TYPEinterpreter_macro"><span class="keyword">type</span> <code class="type"></code>interpreter_macro</span> = </code><table class="typetable">
-<tr>
-<td align="left" valign="top" >
-<code><span class="keyword">|</span></code></td>
-<td align="left" valign="top" >
-<code><span class="constructor">Number_samples_int</span></code></td>
-
-</tr>
-<tr>
-<td align="left" valign="top" >
-<code><span class="keyword">|</span></code></td>
-<td align="left" valign="top" >
-<code><span class="constructor">Max_Eval_Time_int</span></code></td>
-
-</tr></table>
-
-<div class="info">
-Macro constants of this file.<br>
-</div>
-
-<pre><span id="VALinterpreter_macro_to_value"><span class="keyword">val</span> <a href="code_VALInterpreter.interpreter_macro_to_value.html">interpreter_macro_to_value</a></span> : <code class="type"><a href="Interpreter.html#TYPEinterpreter_macro">interpreter_macro</a> -> int</code></pre><div class="info">
-val interpreter_macro_to_value : returns the value associated with the macro.<br>
-</div>
-<pre><span id="VALfun_array_to_fun"><span class="keyword">val</span> <a href="code_VALInterpreter.fun_array_to_fun.html">fun_array_to_fun</a></span> : <code class="type">('a -> 'b) array -> 'a -> 'b array</code></pre><div class="info">
-val func_of_func_array : (int -&gt; value) array -&gt; (int -&gt; value array),
-applies the same int parameter to each element of function array, 
-produces a value array.<br>
-</div>
-<pre><span id="VALcomputing"><span class="keyword">val</span> <a href="code_VALInterpreter.computing.html">computing</a></span> : <code class="type">(int -> <a href="Types.html#TYPEvalue">Types.value</a> array) -> int -> int -> float array array array</code></pre><div class="info">
-val computing : (int -&gt; value array) -&gt; int -&gt; int -&gt; float array array array,
-applies time sequence "0,1,2,3,...,max" to signal beam,
-returns primitive output data.<br>
-</div>
-<pre><span id="VALmatrix_transpose"><span class="keyword">val</span> <a href="code_VALInterpreter.matrix_transpose.html">matrix_transpose</a></span> : <code class="type">'a array array -> int -> 'a array array</code></pre><div class="info">
-val matrix_transpose : 'a array array -&gt; 'a array array, 
-transposes the input matrix.<br>
-</div>
-<pre><span id="VALchannels"><span class="keyword">val</span> <a href="code_VALInterpreter.channels.html">channels</a></span> : <code class="type">'a array array array -> int -> int array</code></pre><div class="info">
-val channels : 'a array array array -&gt; int -&gt; int array, 
-returns an array of number of channels.<br>
-</div>
-<pre><span id="VALarrange"><span class="keyword">val</span> <a href="code_VALInterpreter.arrange.html">arrange</a></span> : <code class="type">'a array array array -> int -> 'a array list</code></pre><div class="info">
-val arrange : 'a array array array -&gt; int -&gt; 'a array list, 
-arranges the output data in "array list" form.<br>
-</div>
-<pre><span id="VALcompute"><span class="keyword">val</span> <a href="code_VALInterpreter.compute.html">compute</a></span> : <code class="type">(int -> <a href="Types.html#TYPEvalue">Types.value</a>) list -> int list * float array list</code></pre><div class="info">
-val compute : (int -&gt; value) list -&gt; (int list) * (float array list).
-input: a list of signal functions
-output: channel number list, data list.<br>
-</div>
-<pre><span id="VALsublist"><span class="keyword">val</span> <a href="code_VALInterpreter.sublist.html">sublist</a></span> : <code class="type">'a list -> int -> int -> 'a list</code></pre><div class="info">
-val sublist : 'a list -&gt; int -&gt; int -&gt; 'a list, 
-<code class="code">sublist l start length</code>, returns the sublist of list 'l', 
-from index 'start', with length 'length'.<br>
-</div>
-<pre><span id="VALmake_beam"><span class="keyword">val</span> <a href="code_VALInterpreter.make_beam.html">make_beam</a></span> : <code class="type">'a list * float array list -> ('a * (int -> <a href="Types.html#TYPEvalue">Types.value</a>)) list</code></pre><div class="info">
-val make_beam : (int list) * (float array list) -&gt; (int * (int -&gt; value)) list,
-input: (sample rate list, data list)
-output: beam = (sample rate, function) list<br>
-</div>
-<pre><span id="VALinterpret_const"><span class="keyword">val</span> <a href="code_VALInterpreter.interpret_const.html">interpret_const</a></span> : <code class="type">'a -> 'b list -> (int * ('c -> 'a)) list</code></pre><div class="info">
-val interpret_const : value -&gt; beam -&gt; beam, generates constant signal with frequency 0.<br>
-</div>
-<pre><span id="VALinterpret_ident"><span class="keyword">val</span> <a href="code_VALInterpreter.interpret_ident.html">interpret_ident</a></span> : <code class="type"><a href="Types.html#TYPEsymbol">Types.symbol</a> -><br>       (int * (int -> <a href="Types.html#TYPEvalue">Types.value</a>)) list -> (int * (int -> <a href="Types.html#TYPEvalue">Types.value</a>)) list</code></pre><div class="info">
-val interpret_ident : string -&gt; beam -&gt; beam, 
-generates signals according to identified symbols.<br>
-</div>
-<pre><span id="VALeval"><span class="keyword">val</span> <a href="code_VALInterpreter.eval.html">eval</a></span> : <code class="type"><a href="Types.html#TYPEfaust_exp">Types.faust_exp</a> -><br>       <a href="Types.html#TYPEdimension">Types.dimension</a> -><br>       (int * (int -> <a href="Types.html#TYPEvalue">Types.value</a>)) list -> (int * (int -> <a href="Types.html#TYPEvalue">Types.value</a>)) list</code></pre><div class="info">
-val rec eval : faust_exp -&gt; beam -&gt; beam,
-main interpretation work is done here.<br>
-</div>
-<pre><span id="VALextract_rate"><span class="keyword">val</span> <a href="code_VALInterpreter.extract_rate.html">extract_rate</a></span> : <code class="type">(int * 'a) list -> int list</code></pre><div class="info">
-val extract_rate : (int * (int -&gt; value)) list -&gt; int list,
-gets the sample rate list from beam.<br>
-</div>
-<pre><span id="VALinterpreter"><span class="keyword">val</span> <a href="code_VALInterpreter.interpreter.html">interpreter</a></span> : <code class="type"><a href="Types.html#TYPEfaust_exp">Types.faust_exp</a> -><br>       int list * float array list -> int list * int list * float array list</code></pre><div class="info">
-val interpreter : faust_exp -&gt; (int list) * (float array list) -&gt; 
-(int list) * (int list) * (float array list)
-input: faust expression, sample rate list * input data list
-output: channel list * sample rate list * output data list.<br>
-</div>
-</body></html>
\ No newline at end of file