diff options
author | adam <adam@pkgsrc.org> | 2006-04-20 18:31:15 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2006-04-20 18:31:15 +0000 |
commit | a2b8e1bd75bedb4fb373808fef084d7d7eaaf932 (patch) | |
tree | 65978f16f347cba3d41160bf0649eec000313bb6 /math/gsl/Makefile | |
parent | c3b02fd2f9dd79feb59e98b872acad3915734c63 (diff) | |
download | pkgsrc-a2b8e1bd75bedb4fb373808fef084d7d7eaaf932.tar.gz |
Changes 1.8:
** Added an error check to trap multifit calls with fewer observations
than parameters. Previously calling the multifit routines with n<p
would cause invalid memory access.
** Added the Debye unit to physical constants.
** Added cumulative distribution functions for the discrete
distributions, including binomial, poisson, geometric, negative
binomial, pascal and hypergeometric.
** Added the functions gsl_cdf_beta_{Pinv,Qinv} and
gsl_cdf_fdist_{Pinv,Qinv} for computing the inverse of the cumulative
beta and F distributions.
** Added the multilinear fit estimator function gsl_multifit_linear_est
for computing model values and their errors.
** Avoid division by zero in gsl_multimin_fdfminimizer_vector_bfgs
if the step-size becomes too small.
** Users on DEC Alpha systems will need to specify their desired IEEE
arithmetic options via CFLAGS when building the library, as these are
no longer added automatically.
** Added new random variate generators gsl_ran_gaussian_ziggurat
and gsl_ran_gamma_mt for the Gaussian and Gamma distributions based on
the Marsaglia-Tsang ziggurat and fast gamma methods.
** Improved the speed of the exponential power distribution
gsl_ran_exppow.
** Improved the speed of the Gaussian ratio method by adding quadratic
bounds in gsl_ran_gaussian_ratio_method.
Diffstat (limited to 'math/gsl/Makefile')
-rw-r--r-- | math/gsl/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/math/gsl/Makefile b/math/gsl/Makefile index 9601ebe6601..9a164ac4c91 100644 --- a/math/gsl/Makefile +++ b/math/gsl/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.24 2006/03/31 23:56:28 jlam Exp $ +# $NetBSD: Makefile,v 1.25 2006/04/20 18:31:15 adam Exp $ -DISTNAME= gsl-1.7 +DISTNAME= gsl-1.8 CATEGORIES= math devel MASTER_SITES= ${MASTER_SITE_GNU:=gsl/} @@ -8,8 +8,8 @@ MAINTAINER= david@maxwell.net HOMEPAGE= http://www.gnu.org/software/gsl/gsl.html COMMENT= The GNU Scientific Library -GNU_CONFIGURE= yes USE_LIBTOOL= yes +GNU_CONFIGURE= yes INFO_FILES= # PLIST TEST_TARGET= check |