1995-08-09 08:06:35 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Objective Caml *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* Automatique. Distributed only by permission. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
1995-06-15 01:17:29 -07:00
|
|
|
(function "square" (x: float)
|
|
|
|
( *f x x))
|
|
|
|
|
|
|
|
(function "integr" (f: addr low: float high: float n: int)
|
|
|
|
(let (h (/f (-f high low) (floatofint n))
|
|
|
|
x low
|
|
|
|
s 0.0
|
|
|
|
i n)
|
|
|
|
(while (> i 0)
|
|
|
|
(assign s (+f s (app f x float)))
|
|
|
|
(assign x (+f x h))
|
|
|
|
(assign i (- i 1)))
|
|
|
|
( *f s h)))
|
|
|
|
|
|
|
|
(function "test" (n: int)
|
|
|
|
(app "integr" ["square" 0.0 1.0 n] float))
|