Changeset 1070
- Timestamp:
- 06/23/09 16:51:37 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/shared/Numerics/BrentSearch.cpp
r477 r1070 234 234 //Now, check that the value on the boundaries are not better than current fxbest 235 235 if (fxbest>fxmin){ 236 xbest= xmin;236 xbest=optpars->xmin;; 237 237 fxbest=fxmin; 238 238 } 239 239 if (fxbest>fxmax){ 240 xbest= xmax;240 xbest=optpars->xmax;; 241 241 fxbest=fxmax; 242 242 }
Note:
See TracChangeset
for help on using the changeset viewer.