Changeset 84


Ignore:
Timestamp:
04/28/09 15:01:13 (16 years ago)
Author:
Eric.Larour
Message:

cosmetics

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/shared/Numerics/BrentSearch.cpp

    r68 r84  
    218218                //Stop the optimization?
    219219                if (sqrt(pow(xbest-xm,2)) < (tol2-0.5*(xmax-xmin))){
    220                         _printf_("\nOptimization terminated:\nthe current x satisfies the termination criteria using 'tolx' of %g \n", tolerance);
     220                        _printf_("      %s%g\n","optimization terminated: the current x satisfies the termination criteria using 'tolx' of" ,tolerance);
    221221                        loop=0;
    222222                }
    223223                else if (iter>=maxiter){
    224                         _printf_("\nExiting: Maximum number of iterations has been exceeded  - increase 'maxiter'\n");
     224                        _printf_("      %s\n","exiting: Maximum number of iterations has been exceeded  - increase 'maxiter'\n");
    225225                        loop=0;
    226226                }
Note: See TracChangeset for help on using the changeset viewer.