[BACK]Return to scanners_for_continuation.ads CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / PHC / Ada / Continuation

Annotation of OpenXM_contrib/PHC/Ada/Continuation/scanners_for_continuation.ads, Revision 1.1.1.1

1.1       maekawa     1: with text_io;                            use text_io;
                      2: with Standard_Complex_Numbers;           use Standard_Complex_Numbers;
                      3:
                      4: package Scanners_for_Continuation is
                      5:
                      6: -- DESCRIPTION :
                      7: --   This package provides scanning procedures for reading the
                      8: --   input data for polynomial continuation from file.
                      9:
                     10:   procedure Scan_Homotopy_Parameters
                     11:               ( file : in file_type; k : out natural; a : out Complex_Number );
                     12:
                     13:   -- DESCRIPTION :
                     14:   --   Scans the file for the homotopy parameters k and a.
                     15:   --   If they are not found, then both output parameters are zero.
                     16:
                     17:   procedure Scan_Continuation_Parameters ( file : in file_type );
                     18:
                     19:   -- DESCRIPTION :
                     20:   --   Scans the file for the continuation parameters.
                     21:   --   If no continuation parameters are given, then nothing happens.
                     22:
                     23:   procedure Scan_Output_Parameter ( file : in file_type; op : out natural );
                     24:
                     25:   -- DESCRIPTION :
                     26:   --   Scans the file for the output parameter (op) of the continuation.
                     27:   --   If no output code is given, then nothing happens.
                     28:
                     29: end Scanners_for_Continuation;

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