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

Annotation of OpenXM_contrib/PHC/Ada/Math_Lib/Numbers/multprec_complex_numbers_io.ads, Revision 1.1

1.1     ! maekawa     1: with text_io;                            use text_io;
        !             2: with Multprec_Complex_Numbers;           use Multprec_Complex_Numbers;
        !             3:
        !             4: package Multprec_Complex_Numbers_io is
        !             5:
        !             6: -- DESCRIPTION :
        !             7: --   This package provides input/output routines for complex numbers.
        !             8: --   A complex number is displayed as two floating numbers, representing
        !             9: --   respectively the real and imaginary part of the complex number.
        !            10:
        !            11:   procedure get ( x : in out Complex_Number );
        !            12:   procedure get ( file : in file_type; x : in out Complex_Number );
        !            13:
        !            14:   procedure put ( x : in Complex_Number );
        !            15:   procedure put ( file : in file_type; x : in Complex_Number );
        !            16:
        !            17:   procedure put ( c : in Complex_Number; fore,aft,exp : in natural );
        !            18:   procedure put ( file : in file_type;
        !            19:                   c : in Complex_Number; fore,aft,exp : in natural );
        !            20:
        !            21:   procedure put ( c : in Complex_Number; dp : in natural );
        !            22:   procedure put ( file : in file_type;
        !            23:                   c : in Complex_Number; dp : in natural );
        !            24:
        !            25: end Multprec_Complex_Numbers_io;

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