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

File: [local] / OpenXM_contrib / PHC / Ada / Root_Counts / Symmetry / symmetric_bkk_bound_solvers.ads (download)

Revision 1.1.1.1 (vendor branch), Sun Oct 29 17:45:31 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 text_io;                            use text_io;
with Standard_Complex_Poly_Systems;      use Standard_Complex_Poly_Systems;
with Standard_Complex_Solutions;         use Standard_Complex_Solutions;
with Symmetry_Group;                     use Symmetry_Group;

package Symmetric_BKK_Bound_Solvers is

-- DESCRIPTION :
--   This package offers functions for the black-box computation of the
--   BKK bound of a given polynomial system w.r.t. symmetry.

  function Symmetric_BKK_Solve
              ( p : Poly_Sys; sign : boolean ) return Solution_List;

  function Symmetric_BKK_Solve
              ( p : Poly_Sys; grp : List_of_Permutations; sign : boolean )
              return Solution_List;

  function Symmetric_BKK_Solve 
              ( file : file_type; p : Poly_Sys; sign : boolean ) 
              return Solution_List;

  function Symmetric_BKK_Solve
              ( file : file_type; p : Poly_Sys;
                grp : List_of_Permutations; sign : boolean  )
              return Solution_List;

  -- DESCRIPTION :
  --   This is a black box computation of all generating solutions,
  --   based on the computation of the symmetric mixed subdivision.
  --   If a file is specified, then intermediate results will be
  --   write on that file.
  --   If no group is given, then the group of all permutations is
  --   assumed.  Sign = true means that there is also a sign symmetry
  --   to take into account.

end Symmetric_BKK_Bound_Solvers;