Skip to content
Snippets Groups Projects
Commit 78cd4ac9 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

fix comment

parent 97a70d10
Branches
Tags
No related merge requests found
// $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 // Copyright (C) 1997 - 2003 C. Geuzaine, J.-F. Remacle
// //
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#include "Gmsh.h" #include "Gmsh.h"
#include "Numeric.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 // 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 // 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. // Gmsh could be distributed with the gsl dynamically linked.
......
// $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 // Copyright (C) 1997 - 2003 C. Geuzaine, J.-F. Remacle
// //
...@@ -38,8 +38,8 @@ double fn1(double x, void *params) ...@@ -38,8 +38,8 @@ double fn1(double x, void *params)
#define MAXITER 100 #define MAXITER 100
// Returns the minimum betwen ax and bx to a given tol using brent's // Returns the minimum betwen ax and cx to a given tolerance tol using
// method. // brent's method.
double brent(double ax, double bx, double cx, double brent(double ax, double bx, double cx,
double (*f) (double), double tol, double *xmin) double (*f) (double), double tol, double *xmin)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment