Home | History | Annotate | Download | only in NonLinearOptimization

Lines Matching refs:parl

22     Scalar parc, parl;
71 /* step provides a lower bound, parl, for the zero of */
73 parl = 0.;
88 parl = fp / delta / temp / temp;
100 /* if the input par lies outside of the interval (parl,paru), */
102 par = (std::max)(par,parl);
125 /* of par. also test for the exceptional cases where parl */
127 if (abs(fp) <= Scalar(0.1) * delta || (parl == 0. && fp <= temp && temp < 0.) || iter == 10)
144 /* depending on the sign of the function, update parl or paru. */
146 parl = (std::max)(parl,par);
152 par = (std::max)(parl,par+parc);
180 Scalar parc, parl;
219 /* step provides a lower bound, parl, for the zero of */
221 parl = 0.;
226 parl = fp / delta / temp / temp;
238 /* if the input par lies outside of the interval (parl,paru), */
240 par = (std::max)(par,parl);
264 /* of par. also test for the exceptional cases where parl */
266 if (abs(fp) <= Scalar(0.1) * delta || (parl == 0. && fp <= temp && temp < 0.) || iter == 10)
282 /* depending on the sign of the function, update parl or paru. */
284 parl = (std::max)(parl,par);
289 par = (std::max)(parl,par+parc);