File : float_statistics.ads


------------------------------------------------------------------------------
--
--  package Float_Statistics (spec)
--
--  Declares a type for calculating basic statistical properties of an
--  ensemble of data of the predefined type Float.
--
------------------------------------------------------------------------------
--  Update information:
--
--  1999.03.31 (Jacob Sparre Andersen)
--    Written.
--
--  (Insert additional update information above this line.)
------------------------------------------------------------------------------

with Generic_Float_Statistics;

package Float_Statistics is new Generic_Float_Statistics
  (Maximum_Number_Of_Data_Points => Positive'Last,
   Data                          => Float,
   Squared_Data                  => Float);