IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 10255


Ignore:
Timestamp:
Nov 28, 2006, 4:33:54 PM (19 years ago)
Author:
magnier
Message:

constrain to constraint

Location:
trunk/psLib/src/math
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psMinimizePowell.c

    r9730 r10255  
    1111 *  NOTE: XXX: The SDR is silent about data types.  F32 is implemented here.
    1212 *
    13  *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2006-10-24 22:52:56 $
     13 *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2006-11-29 02:33:54 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    766766    psMinimization *min,
    767767    psVector *params,
    768     psMinConstrain *constrain,
     768    psMinConstraint *constraint,
    769769    const psArray *coords,
    770770    const psVector *value,
     
    783783    newCoords->data[coords->n + 2] = &model;
    784784
    785     bool success = psMinimizePowell(min, params, constrain->paramMask, newCoords, myPowellChi2Func);
     785    bool success = psMinimizePowell(min, params, constraint->paramMask, newCoords, myPowellChi2Func);
    786786
    787787    newCoords->data[coords->n - 1] = NULL; // We can't free the array with a function pointer on it
  • trunk/psLib/src/math/psMinimizePowell.h

    r6346 r10255  
    88 *  @author GLG, MHPCC
    99 *
    10  *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2006-02-07 23:14:21 $
     10 *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2006-11-29 02:33:54 $
    1212 *
    1313 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    8181    psMinimization *min,               ///< Minimization specification
    8282    psVector *params,                  ///< "Best guess" for parameters that minimize func
    83     psMinConstrain *constrain,
     83    psMinConstraint *constraint,
    8484    const psArray *coords,             ///< Measurement coordinates
    8585    const psVector *value,             ///< Measured values at the coordinates
Note: See TracChangeset for help on using the changeset viewer.