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

File: [local] / OpenXM_contrib / PHC / Ada / Continuation / black_polynomial_continuations.ads (download)

Revision 1.1.1.1 (vendor branch), Sun Oct 29 17:45:22 2000 UTC (23 years, 6 months ago) by maekawa
Branch: PHC, MAIN
CVS Tags: v2, maekawa-ipv6, RELEASE_1_2_3, RELEASE_1_2_2_KNOPPIX_b, RELEASE_1_2_2_KNOPPIX, RELEASE_1_2_2, RELEASE_1_2_1, HEAD
Changes since 1.1: +0 -0 lines

Import the second public release of PHCpack.

OKed by Jan Verschelde.

with text_io;                            use text_io;
with Standard_Complex_Poly_Systems;      use Standard_Complex_Poly_Systems;
with Standard_Complex_Solutions;         use Standard_Complex_Solutions;

package Black_Polynomial_Continuations is

-- DESCRIPTION :
--   This package provides two procedure for performing polynomial
--   continuation in batch processing mode.  They mainly differ by the fact
--   that the homotopy might be already provided in the input parameter.

  procedure Black_Box_Polynomial_Continuation
                  ( infile,outfile : in file_type; pocotime : out duration );

  procedure Black_Box_Polynomial_Continuation
                  ( outfile : in file_type; 
                    p,q : in Poly_Sys; sols : in out Solution_List;
                    pocotime : out duration );

  -- DESCRIPTION :
  --   Performs polynomial continuation with default settings.

  -- REQUIRED :
  --   Both files must be opened respectively for input and output.

  -- ON ENTRY :
  --   outfile      file to write the results on;
  --   p            target polynomial system;
  --   q            a start system for solving p;
  --   sols         the solutions of q.

  -- ON RETURN :
  --   sols         the solutions of p;
  --   pocotime     elapsed user cpu time for polyhedral continuation.

end Black_Polynomial_Continuations;