Annotation of OpenXM_contrib/PHC/Ada/Continuation/ts_poco.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_Numbers; use Standard_Complex_Numbers;
4: with Standard_Complex_Solutions; use Standard_Complex_Solutions;
5: with Standard_Complex_Poly_Systems; use Standard_Complex_Poly_Systems;
6: with Standard_Complex_Poly_Systems_io; use Standard_Complex_Poly_Systems_io;
7: with Drivers_for_Poly_Continuation; use Drivers_for_Poly_Continuation;
8:
9: procedure ts_poco is
10:
11: -- DESCRIPTION :
12: -- Calls the driver for polynomial continuation.
13:
14: file : file_type;
15: lp : Link_to_Poly_Sys;
16: sols : Solution_List;
17: target : Complex_Number;
18:
19: begin
20: new_line;
21: get(lp);
22: new_line;
23: put_line("Reading the name of the output file.");
24: Read_Name_and_Create_File(file);
25: new_line;
26: Driver_for_Polynomial_Continuation(file,lp.all,sols,target);
27: end ts_poco;
28:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>