[BACK]Return to multprec_complex_vector_tools.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_complex_vector_tools.ads (download)

Revision 1.1.1.1 (vendor branch), Sun Oct 29 17:45:23 2000 UTC (23 years, 8 months ago) by maekawa
Branch: PHC, MAIN
CVS Tags: v2, maekawa-ipv6, RELEASE_1_2_3, RELEASE_1_2_2_KNOPPIX_b, RELEASE_1_2_2_KNOPPIX, RELEASE_1_2_2, RELEASE_1_2_1, HEAD
Changes since 1.1: +0 -0 lines

Import the second public release of PHCpack.

OKed by Jan Verschelde.

with Standard_Complex_Vectors;
with Multprec_Complex_Vectors;

package Multprec_Complex_Vector_Tools is

-- DESCRIPTION :
--   Here are some tools for multi-precision vectors.

  function Create ( v : Standard_Complex_Vectors.Vector )
                  return Multprec_Complex_Vectors.Vector;

  -- DESCRIPTION :
  --   Converts the standard complex vector into a multi-precision vector.

  procedure Set_Size ( v : in out Multprec_Complex_Vectors.Vector;
                       size : in natural );

  -- DESCRIPTION :
  --   Adjusts the size of the numbers in v to the given size.

end Multprec_Complex_Vector_Tools;