[BACK]Return to trees_of_vectors_io.ads CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / PHC / Ada / Root_Counts / Implift

File: [local] / OpenXM_contrib / PHC / Ada / Root_Counts / Implift / trees_of_vectors_io.ads (download)

Revision 1.1.1.1 (vendor branch), Sun Oct 29 17:45:29 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 Trees_of_Vectors;                   use Trees_of_Vectors;

package Trees_of_Vectors_io is

-- DESCRIPTION :
--   This package provides i/o operations for Trees_of_Vectors.
--   The formats for input are the same as those for output.

  procedure get ( n : in natural; tv : in out Tree_of_Vectors );
  procedure get ( file : in file_type;
                  n : in natural; tv : in out Tree_of_Vectors );

  -- DESCRIPTION :
  --   Reads a tree of vectors from standard input or from file,
  --   n equals the maximum length of a vectors in the tree.

  procedure put ( tv : in Tree_of_Vectors );
  procedure put ( file : in file_type; tv : in Tree_of_Vectors );

  -- DESCRIPTION :
  --   Writes a tree of vectors on standard output or on file.
  --   The left branch in the tree comes first,
  --   for each vector a new line is taken,
  --   the entries in the vector are separated by spaces.
  --   The output of a whole tree is ended by a blank line.

end Trees_of_Vectors_io;