|
| mp_leastsq.c |
| We solve the following nonlinear least squares model:
|
|
| mp_leastsq2.c |
| This model is similar to leastsq. The key difference is that we supply a callback routine that can compute 2nd derivatives of the model. However, we only include part of the 2nd derivatives corresponding to the direct objective terms, res(i)**2. The terms from b(i,j)*x(j)**2 are ignored in the 2nd derivatives. CONOPT will not notice the incorrect derivatives but it may converge more slowly.
|
|
| mp_leastsq5.c |
| This model is similar to leastsq, but this time we define 2nd order information in the form of a 2DDir routine.
|
|
| mp_pinthread4.c |
| This is a CONOPT implementation of the Pindyck model from the GAMS model library.
|
|
| mp_qpbandb.c |
| Similar to qpdense but with added binary variables to model that not too many x-values can be selected.
|
|
| mp_trans.c |
| We implement and solve the following linear transportation model.
|
|