X-Git-Url: https://scm.cri.ensmp.fr/git/Faustine.git/blobdiff_plain/fc2ec49c325b99370170789886b4be4f43e16d68..b8e89a384896a4f8ce3e1990a10c88e7164af55c:/documentation/code_VALFaustexp.delay.html diff --git a/documentation/code_VALFaustexp.delay.html b/documentation/code_VALFaustexp.delay.html deleted file mode 100644 index cf55901..0000000 --- a/documentation/code_VALFaustexp.delay.html +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - -Faustexp.delay - - -let rec delay exp_faust = match exp_faust with
-        |Const v        ->        0
-        |Ident s        ->
-                (
-                        match s with
-                        |Add                        ->        0
-                        |Sup                        ->        0                
-                        |Mul                        ->        0
-                        |Div                        ->        0
-                        |Pass                        ->        0
-                        |Stop                        ->        0
-                        |Mem                        ->        1
-                        |Delay                        ->        100000 (* danger! *)
-                        |Floor                        ->        0
-                        |Int                        ->        0
-                        |Sin                        ->        0
-                        |Cos                        ->        0
-                        |Atan                        ->        0
-                        |Atantwo                ->      0
-                        |Sqrt                        ->        0
-                        |Rdtable                ->        100000 (* danger! *)
-                        |Mod                        ->        0
-                        |Larger                        ->        0
-                        |Smaller                ->        0
-                        |Vectorize                ->        100 (* danger! *)
-                        |Concat                        ->        0
-                        |Nth                        ->        0
-                        |Serialize                ->        0
-                        |Prefix                         ->        1
-                        |Selecttwo                ->        0
-                        |Selectthree                ->        0
-                )
-        |Par (e1, e2)        ->        max (delay e1) (delay e2)
-        |Seq (e1, e2)        ->        (delay e1) + (delay e2)
-        |Split (e1, e2)        ->        (delay e1) + (delay e2)
-        |Merge (e1, e2)        ->        (delay e1) + (delay e2)
-        |Rec (e1, e2)        ->        delay e1
\ No newline at end of file