Changeset 68
- Timestamp:
- 04/27/09 14:07:44 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/shared/Numerics/BrentSearch.cpp
r8 r68 57 57 //display result 58 58 _printf_("\n Iteration x f(x) Tolerance Procedure\n\n"); 59 _printf_(" %s %12.6g %12.6g %s"," N/A",xmin,fxmin," N/A boundary\n");59 _printf_(" %s %12.6g %12.6g %s"," N/A",xmin,fxmin," N/A boundary\n"); 60 60 61 61 //get the value of the function at the first boundary xmax and display result 62 62 fxmax = (*f)(xmax,optargs); 63 _printf_(" %s %12.6g %12.6g %s"," N/A",xmax,fxmax," N/A boundary\n");63 _printf_(" %s %12.6g %12.6g %s"," N/A",xmax,fxmax," N/A boundary\n"); 64 64 65 65 //initialize the other variables
Note:
See TracChangeset
for help on using the changeset viewer.