home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / adav313.zip / gnat-3_13p-os2-bin-20010916.zip / emx / gnatlib / a-nuflra.ads < prev    next >
Text File  |  2000-07-19  |  5KB  |  102 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUN-TIME COMPONENTS                         --
  4. --                                                                          --
  5. --            A D A . N U M E R I C S . F L O A T _ R A N D O M             --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.12 $                             --
  10. --                                                                          --
  11. --          Copyright (C) 1992-1998 Free Software Foundation, Inc.          --
  12. --                                                                          --
  13. -- This specification is derived from the Ada Reference Manual for use with --
  14. -- GNAT. The copyright notice above, and the license provisions that follow --
  15. -- apply solely to the  contents of the part following the private keyword. --
  16. --                                                                          --
  17. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  18. -- terms of the  GNU General Public License as published  by the Free Soft- --
  19. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  20. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  21. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  22. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  23. -- for  more details.  You should have  received  a copy of the GNU General --
  24. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  25. -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
  26. -- MA 02111-1307, USA.                                                      --
  27. --                                                                          --
  28. -- As a special exception,  if other files  instantiate  generics from this --
  29. -- unit, or you link  this unit with other files  to produce an executable, --
  30. -- this  unit  does not  by itself cause  the resulting  executable  to  be --
  31. -- covered  by the  GNU  General  Public  License.  This exception does not --
  32. -- however invalidate  any other reasons why  the executable file  might be --
  33. -- covered by the  GNU Public License.                                      --
  34. --                                                                          --
  35. -- GNAT was originally developed  by the GNAT team at  New York University. --
  36. -- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
  37. --                                                                          --
  38. ------------------------------------------------------------------------------
  39.  
  40. --  Note: the implementation used in this package was contributed by
  41. --  Robert Eachus. It is based on the work of L. Blum, M. Blum, and
  42. --  M. Shub, SIAM Journal of Computing, Vol 15. No 2, May 1986. The
  43. --  particular choices for P and Q chosen here guarantee a period of
  44. --  562,085,314,430,582 (about 2**49), and the generated sequence has
  45. --  excellent randomness properties. For further details, see the
  46. --  paper "Fast Generation of Trustworthy Random Numbers", by Robert
  47. --  Eachus, which describes both the algorithm and the efficient
  48. --  implementation approach used here. This paper is available at
  49. --  the Ada Core Technologies web site (http://www.gnat.com).
  50.  
  51. with Interfaces;
  52.  
  53. package Ada.Numerics.Float_Random is
  54.  
  55.    --  Basic facilities
  56.  
  57.    type Generator is limited private;
  58.  
  59.    subtype Uniformly_Distributed is Float range 0.0 .. 1.0;
  60.  
  61.    function Random (Gen : Generator) return Uniformly_Distributed;
  62.  
  63.    procedure Reset (Gen : Generator);
  64.    procedure Reset (Gen : Generator; Initiator : Integer);
  65.  
  66.    --  Advanced facilities
  67.  
  68.    type State is private;
  69.  
  70.    procedure Save  (Gen : Generator; To_State   : out State);
  71.    procedure Reset (Gen : Generator; From_State : State);
  72.  
  73.    Max_Image_Width : constant := 80;
  74.  
  75.    function Image (Of_State :    State)  return String;
  76.    function Value (Coded_State : String) return State;
  77.  
  78. private
  79.    type Int is new Interfaces.Integer_32;
  80.    type Flt is digits 14;
  81.  
  82.    K1   : constant := 94_833_359;
  83.    K1F  : constant := 94_833_359.0;
  84.    K2   : constant := 47_416_679;
  85.    K2F  : constant := 47_416_679.0;
  86.    Scal : constant := 1.0 / (K1F * K2F);
  87.  
  88.    type State is record
  89.       X1  : Int := 2999 ** 2;      --  Square mod p
  90.       X2  : Int := 1439 ** 2;      --  Square mod q
  91.       P   : Int := K1;
  92.       Q   : Int := K2;
  93.       X   : Int := 1;
  94.       Scl : Flt := Scal;
  95.    end record;
  96.  
  97.    type Generator is limited record
  98.       Gen_State : State;
  99.    end record;
  100.  
  101. end Ada.Numerics.Float_Random;
  102.