IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 3989


Ignore:
Timestamp:
May 19, 2005, 1:52:19 PM (21 years ago)
Author:
gusciora
Message:

Set the lastDelta value in psMinimizePowell().

Location:
trunk/psLib/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/dataManip/psMinimize.c

    r3977 r3989  
    99 *  @author GLG, MHPCC
    1010 *
    11  *  @version $Revision: 1.117 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-05-19 05:18:20 $
     11 *  @version $Revision: 1.118 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-05-19 23:52:19 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    20562056            // XXX: Ensure that currFuncVal is the correct value to use here.
    20572057            min->value = currFuncVal;
     2058            // XXX: ensure that the lastDelta should be 0.0.
     2059            min->lastDelta = 0.0;
    20582060            psTrace(".psLib.dataManip.psMinimizePowell", 4,
    20592061                    "---- psMinimizePowell() end (1)(true) ----\n");
     
    20952097            min->value = currFuncVal;
    20962098            min->iter = iterationNumber;
     2099            min->lastDelta = currFuncVal - baseFuncVal;
    20972100            psTrace(".psLib.dataManip.psMinimizePowell", 4,
    20982101                    "---- psMinimizePowell() end (2) (true) ----\n");
  • trunk/psLib/src/math/psMinimize.c

    r3977 r3989  
    99 *  @author GLG, MHPCC
    1010 *
    11  *  @version $Revision: 1.117 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-05-19 05:18:20 $
     11 *  @version $Revision: 1.118 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-05-19 23:52:19 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    20562056            // XXX: Ensure that currFuncVal is the correct value to use here.
    20572057            min->value = currFuncVal;
     2058            // XXX: ensure that the lastDelta should be 0.0.
     2059            min->lastDelta = 0.0;
    20582060            psTrace(".psLib.dataManip.psMinimizePowell", 4,
    20592061                    "---- psMinimizePowell() end (1)(true) ----\n");
     
    20952097            min->value = currFuncVal;
    20962098            min->iter = iterationNumber;
     2099            min->lastDelta = currFuncVal - baseFuncVal;
    20972100            psTrace(".psLib.dataManip.psMinimizePowell", 4,
    20982101                    "---- psMinimizePowell() end (2) (true) ----\n");
Note: See TracChangeset for help on using the changeset viewer.