[BACK]Return to m_homogeneous_start_systems.ads CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / PHC / Ada / Root_Counts / Product

File: [local] / OpenXM_contrib / PHC / Ada / Root_Counts / Product / m_homogeneous_start_systems.ads (download)

Revision 1.1.1.1 (vendor branch), Sun Oct 29 17:45:29 2000 UTC (23 years, 7 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 Standard_Complex_Poly_Systems;      use Standard_Complex_Poly_Systems;
with Standard_Complex_Solutions;         use Standard_Complex_Solutions;
with Partitions_of_Sets_of_Unknowns;     use Partitions_of_Sets_of_Unknowns;

package m_Homogeneous_Start_Systems is

-- DESCRIPTION :
--   the purpose of this package is to provide a routine
--   for the automatic construction of a m-homomogeneous
--   start system, given a partition of the set of unknowns.

  procedure m_Homogeneous_Start_System
                 ( p : in Poly_Sys; z : in Partition;
                   q : out Poly_Sys; qsols : in out Solution_List );

  -- ON ENTRY :
  --   p           polynomial system;
  --   z           partition of the set of unknowns.

  -- ON RETURN :
  --   q           an m-homogeneous start system;
  --   qsols       the solutions of the start system q.

end m_Homogeneous_Start_Systems;