[BACK]Return to multprec_random_vectors.ads CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / PHC / Ada / Math_Lib / Matrices

File: [local] / OpenXM_contrib / PHC / Ada / Math_Lib / Matrices / multprec_random_vectors.ads (download)

Revision 1.1, Sun Oct 29 17:45:24 2000 UTC (23 years, 8 months ago) by maekawa
Branch point for: MAIN

Initial revision

with Multprec_Integer_Vectors;
with Multprec_Floating_Vectors;
with Multprec_Complex_Vectors;

package Multprec_Random_Vectors is

-- DESCRIPTION :
--   Offers routines to generate vectors of random multi-precision numbers.

  function Random_Vector ( first,last,sz : natural )
                         return Multprec_Integer_Vectors.Vector;

  -- DESCRIPTION : 
  --   Returns a vector of range first..last with entries of size sz.

  function Random_Vector ( first,last,sz : natural )
                         return Multprec_Floating_Vectors.Vector;

  -- DESCRIPTION :
  --   Returns a vector of range first..last with entries of size sz.

  function Random_Vector ( first,last,sz : natural )
                         return Multprec_Complex_Vectors.Vector;

  -- DESCRIPTION :
  --   Returns a vector of range first..last with entries of size sz.

end Multprec_Random_Vectors;