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

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

Revision 1.1.1.1 (vendor branch), Sun Oct 29 17:45:23 2000 UTC (23 years, 7 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 text_io;                            use text_io;
with Abstract_Ring_io;
with Generic_Vectors;
with Generic_Vectors_io;
with Generic_VecVecs;

generic

  with package Ring_io is new Abstract_Ring_io(<>);
  with package Vectors is new Generic_Vectors(Ring_io.Ring);
  with package Vectors_io is new Generic_Vectors_io(Ring_io,Vectors);
  with package VecVecs is new Generic_VecVecs(Ring_io.Ring,Vectors);

package Generic_VecVecs_io is

-- DESCRIPTION :
--   Provides input/output routines for vectors with any entries.

  use VecVecs;

  procedure get ( n : in natural; v : in out VecVec );
  procedure get ( file : in file_type; n : in natural; v : in out VecVec );

  -- DESCRIPTION :
  --   Numbers will be read from standard input or from file,
  --   until all entries of v are filled with vectors of range 1..n.
  --   The numbers must be separated by spaces or line breaks.

  procedure get ( n1,n2 : in natural; v : in out Link_to_VecVec );
  procedure get ( file : in file_type; n1,n2 : in natural;
                  v : in out Link_to_VecVec );

  -- DESCRIPTION :
  --   The vector on return will be of range 1..n1 and will be filled
  --   with vectors of range 1..n2, with numbers read from standard
  --   input or from file.
  --   The numbers must be separated by spaces or line breaks.

  procedure put ( v : in VecVec );
  procedure put ( file : in file_type; v : in VecVec );
  procedure put ( v : in Link_to_VecVec );
  procedure put ( file : in file_type; v : in Link_to_VecVec );

  -- DESCRIPTION :
  --   The vector of vectors v is written on standard output or on file.
  --   The elements of v are written on separate lines.
  --   The elements of the elements of v appear on the same line and are 
  --   separated by a space.

  procedure put_line ( v : in VecVec );
  procedure put_line ( file : in file_type; v : in VecVec );
  procedure put_line ( v : in Link_to_VecVec );
  procedure put_line ( file : in file_type; v : in Link_to_VecVec );

  -- DESCRIPTION :
  --   The vector of vectors v is written on standard output or on file.
  --   The elements are written on separate lines.

  procedure put ( v : in VecVec; dp : in natural );
  procedure put ( file : in file_type; v : in VecVec; dp : in natural );
  procedure put ( v : in Link_to_VecVec; dp : in natural );
  procedure put ( file : in file_type;
                  v : in Link_to_VecVec; dp : in natural );

  -- DESCRIPTION :
  --   The vector of vectors v is written on standard output or on file.
  --   The elements of v are written on separate lines with dp decimal places.
  --   The elements of the elements of v appear on the same line and are 
  --   separated by a space.

  procedure put_line ( v : in VecVec; dp : in natural );
  procedure put_line ( file : in file_type; v : in VecVec; dp : in natural );
  procedure put_line ( v : in Link_to_VecVec; dp : in natural );
  procedure put_line ( file : in file_type;
                       v : in Link_to_VecVec; dp : in natural );

  -- DESCRIPTION :
  --   The vector of vectors v is written on standard output or on file.
  --   The elements are written on separate lines with dp decimal places.

end Generic_VecVecs_io;