Home | History | Annotate | Download | only in NonLinearOptimization

Lines Matching full:paru

22     Scalar temp, paru;
89 /* calculate an upper bound, paru, for the zero of the function. */
94 paru = gnorm / delta;
95 if (paru == 0.)
96 paru = dwarf / (std::min)(delta,Scalar(0.1));
98 /* if the input par lies outside of the interval (parl,paru), */
101 par = (std::min)(par,paru);
111 par = (std::max)(dwarf,Scalar(.001) * paru); /* Computing MAX */
142 /* depending on the sign of the function, update parl or paru. */
146 paru = (std::min)(paru,par);
178 Scalar temp, paru;
225 /* calculate an upper bound, paru, for the zero of the function. */
230 paru = gnorm / delta;
231 if (paru == 0.)
232 paru = dwarf / (std::min)(delta,Scalar(0.1));
234 /* if the input par lies outside of the interval (parl,paru), */
237 par = (std::min)(par,paru);
248 par = (std::max)(dwarf,Scalar(.001) * paru); /* Computing MAX */
278 /* depending on the sign of the function, update parl or paru. */
282 paru = (std::min)(paru,par);