Annotation of OpenXM_contrib/PHC/Ada/Root_Counts/Implift/ts_drivimpl.adb, Revision 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_Poly_Systems; use Standard_Complex_Poly_Systems;
! 4: with Standard_Complex_Poly_Systems_io; use Standard_Complex_Poly_Systems_io;
! 5: with Standard_Complex_Solutions; use Standard_Complex_Solutions;
! 6: with Drivers_for_Implicit_Lifting; use Drivers_for_Implicit_Lifting;
! 7:
! 8: procedure ts_drivimpl is
! 9:
! 10: -- DESCRIPTION :
! 11: -- This procedure calls the driver to implicit lifting.
! 12:
! 13: lp,lq : Link_to_Poly_Sys;
! 14: qsols : Solution_List;
! 15: b : natural;
! 16: file : file_type;
! 17:
! 18: begin
! 19: new_line;
! 20: put_line("Test on implicit lifting.");
! 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: lq := new Poly_Sys(lp'range);
! 27: Driver_for_Mixture_Bezout_BKK(file,lp.all,true,lq.all,qsols,b);
! 28: end ts_drivimpl;
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>