diff --git a/Numeric/Numeric.cpp b/Numeric/Numeric.cpp index ccf7aacb17741d73527515783eb53c59c4439b17..60fb0894211070e37eb58b662248649164eccc44 100644 --- a/Numeric/Numeric.cpp +++ b/Numeric/Numeric.cpp @@ -1,4 +1,4 @@ -// $Id: Numeric.cpp,v 1.7 2003-03-01 22:36:42 geuzaine Exp $ +// $Id: Numeric.cpp,v 1.8 2003-03-02 05:26:29 geuzaine Exp $ // // Copyright (C) 1997 - 2003 C. Geuzaine, J.-F. Remacle // @@ -25,7 +25,7 @@ #include "Gmsh.h" #include "Numeric.h" -// Check GSL version. We need at least 1.2, since all versions >= +// Check GSL version. We need at least 1.2, since all versions <= // 1.1.1 have a buggy SVD routine (infinite loop fixed on Sun Jun 16 // 11:45:29 2002 in GSL's cvs tree). We check this at run time since // Gmsh could be distributed with the gsl dynamically linked. diff --git a/Numeric/gsl_brent.cpp b/Numeric/gsl_brent.cpp index 88be04b65edf5bcc47fac64b2ecf59c0acb556af..c4373a03ed71e762a9f98ddb8f2fb385f047b250 100644 --- a/Numeric/gsl_brent.cpp +++ b/Numeric/gsl_brent.cpp @@ -1,4 +1,4 @@ -// $Id: gsl_brent.cpp,v 1.5 2003-03-01 22:36:42 geuzaine Exp $ +// $Id: gsl_brent.cpp,v 1.6 2003-03-02 05:23:11 geuzaine Exp $ // // Copyright (C) 1997 - 2003 C. Geuzaine, J.-F. Remacle // @@ -38,8 +38,8 @@ double fn1(double x, void *params) #define MAXITER 100 -// Returns the minimum betwen ax and bx to a given tol using brent's -// method. +// Returns the minimum betwen ax and cx to a given tolerance tol using +// brent's method. double brent(double ax, double bx, double cx, double (*f) (double), double tol, double *xmin)