File: sinus.ml

package info (click to toggle)
ocamlviz 1.01-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,176 kB
  • sloc: ml: 5,722; makefile: 199
file content (38 lines) | stat: -rw-r--r-- 1,415 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
(**************************************************************************)
(*                                                                        *)
(*  Ocamlviz --- real-time profiling tools for Objective Caml             *)
(*  Copyright (C) by INRIA - CNRS - Universite Paris Sud                  *)
(*  Authors: Julien Robert                                                *)
(*           Guillaume Von Tokarski                                       *)
(*           Sylvain Conchon                                              *)
(*           Jean-Christophe Filliatre                                    *)
(*           Fabrice Le Fessant                                           *)
(*  GNU Library General Public License version 2                          *)
(*  See file LICENSE for details                                          *)
(*                                                                        *)
(**************************************************************************)

open Ocamlviz


let () = 
  init ();
  wait_for_connected_clients 1;
  let t = ref 0 in
  let x = Value.observe_int_ref  "my value" (ref 1) in
  let l = ref [] in
  for i = 0 to 100_000_000 do
    yield ();
    incr t;
    l := !t :: !l;
    l := List.rev !l;
    x := truncate (50. +. 50. *. sin (float !t *. 0.001));
  done;



(*
Local Variables: 
compile-command: "unset LANG; make -C .. test-sinus"
End: 
*)