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

Annotation of OpenXM_contrib/PHC/Ada/Math_Lib/Polynomials/standard_complex_poly_randomizers.ads, Revision 1.1.1.1

1.1       maekawa     1: with Standard_Complex_Polynomials;       use Standard_Complex_Polynomials;
                      2: with Standard_Complex_Poly_Systems;      use Standard_Complex_Poly_Systems;
                      3:
                      4: package Standard_Complex_Poly_Randomizers is
                      5:
                      6: -- DESCRIPTION :
                      7: --   This package offers routines for randomizing and perturbing
                      8: --   the coefficients of polynomials.
                      9: --   Except for the last three functions, the monomial structure
                     10: --   remains the same, only random (real or complex) coefficients
                     11: --   will replace the existing ones.
                     12:
                     13:   function Complex_Randomize ( p : Poly ) return Poly;
                     14:   function Complex_Randomize ( p : Poly_Sys ) return Poly_Sys;
                     15:
                     16:   -- DESCRIPTION :
                     17:   --   The real and imaginary part of the randomly generated
                     18:   --   coefficients are in [-1.0,1.0]
                     19:
                     20:   function Complex_Randomize1 ( p : Poly ) return Poly;
                     21:   function Complex_Randomize1 ( p : Poly_Sys ) return Poly_Sys;
                     22:
                     23:   -- DESCRIPTION :
                     24:   --   Generates random complex coefficients with modulus one.
                     25:
                     26: end Standard_Complex_Poly_Randomizers;

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>