|
CppAD: A C++ Algorithmic Differentiation Package
20130102
|
| bool cppad_ipopt::cppad_ipopt_nlp::get_bounds_info | ( | Index | n, |
| Number * | x_l, | ||
| Number * | x_u, | ||
| Index | m, | ||
| Number * | g_l, | ||
| Number * | g_u | ||
| ) | [virtual] |
Return bound information about optimization problem.
| [in] | n | is the dimension of the domain space for f(x) and g(x); i.e., it must be equal to n_. |
| [out] | x_l | is a vector of size n. The input value of its elements does not matter. On output, it is a copy of the lower bound for ; i.e., x_l_. |
| [out] | x_u | is a vector of size n. The input value of its elements does not matter. On output, it is a copy of the upper bound for ; i.e., x_u_. |
| [in] | m | is the dimension of the range space for g(x). i.e., it must be equal to m_. |
| [out] | g_l | is a vector of size m. The input value of its elements does not matter. On output, it is a copy of the lower bound for ; i.e., g_l_. |
| [out] | g_u | is a vector of size m. The input value of its elements does not matter. On output, it is a copy of the upper bound for ; i.e, g_u_. |
Definition at line 313 of file cppad_ipopt_nlp.cpp.