[BACK]Return to ts_drivscal.adb CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / PHC / Ada / Homotopy

Annotation of OpenXM_contrib/PHC/Ada/Homotopy/ts_drivscal.adb, Revision 1.1.1.1

1.1       maekawa     1: with text_io;                            use text_io;
                      2: with Communications_with_User;           use Communications_with_User;
                      3: with Standard_Complex_Vectors;           use Standard_Complex_Vectors;
                      4: with Standard_Complex_Poly_Systems;      use Standard_Complex_Poly_Systems;
                      5: with Standard_Complex_Poly_Systems_io;   use Standard_Complex_Poly_Systems_io;
                      6: with Drivers_for_Scaling;                use Drivers_for_Scaling;
                      7:
                      8: procedure ts_drivscal is
                      9:
                     10: -- DESCRIPTION :
                     11: --   Calls the driver routine to scaling a polynomial system.
                     12:
                     13:   file : file_type;
                     14:   lp : Link_to_Poly_Sys;
                     15:   scvc : Link_to_Vector;
                     16:   bas : natural := 2;
                     17:
                     18: begin
                     19:   new_line;
                     20:   put_line("Test on scaling polynomial systems.");
                     21:   new_line;
                     22:   get(lp);
                     23:   new_line;
                     24:   put_line("Reading the name of the output file.");
                     25:   Read_Name_and_Create_File(file);
                     26:   Driver_for_Scaling(file,lp.all,bas,scvc);
                     27: end ts_drivscal;

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