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

File: [local] / OpenXM_contrib / PHC / Ada / Root_Counts / Dynlift / global_dynamic_triangulation.ads (download)

Revision 1.1, Sun Oct 29 17:45:28 2000 UTC (23 years, 8 months ago) by maekawa
Branch point for: MAIN

Initial revision

with Standard_Integer_Vectors;           use Standard_Integer_Vectors;
with Lists_of_Integer_Vectors;           use Lists_of_Integer_Vectors;
with Simplices,Triangulations;           use Simplices,Triangulations;

package Global_Dynamic_Triangulation is

-- DESCRIPTION :
--   This package contains some global aspects of the dynamic lifting
--   algorithm applied to the unmixed case.

  procedure Initial_Simplex ( pts : in List; order : in boolean; 
                              s : out Simplex; rest : in out List );

  -- DESCRIPTION :
  --   Searches for an initial simplex of the triangulation of the
  --   list of points pts.

  -- ON ENTRY :
  --   pts       a list of integer vectors;
  --   order     if true, then the first n+1 points of the list will be
  --             considered first for the construction of the initial cell.

  -- ON RETURN :
  --   s         an initial simplex, if Volume(s) = 0, then Volume(pts) = 0,
  --             the lifting values of the initial cell are all zero;
  --   rest      the rest of the points: pts - s.

  function Max_Extreme ( l : List; k : natural ) return Link_to_Vector;

  -- DESCRIPTION :
  --   Returns the vector in the list l with the maximal kth component.

  function Max_Extreme ( l : List; weights : vector ) return Link_to_Vector;

  -- DESCRIPTION :
  --   Return the element in l for which the weighted sum is maximal.

  function Max_Extreme ( l : List; n : natural; low,upp : integer )
                       return Link_to_Vector;

  -- DESCRIPTION :
  --   Generates first a vector with n random weights, in between low and upp,
  --   and gives the maximal extreme w.r.t. this weighted sum.

end Global_Dynamic_Triangulation;