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;