Ipopt::StdInterfaceTNLP Class Reference

Implementation of a TNLP for the Standard C interface. More...

#include <IpStdInterfaceTNLP.hpp>

Inheritance diagram for Ipopt::StdInterfaceTNLP:
Inheritance graph
[legend]
Collaboration diagram for Ipopt::StdInterfaceTNLP:
Collaboration graph
[legend]

List of all members.

Public Member Functions

Constructors/Destructors



 StdInterfaceTNLP (Index n_var, const Number *x_L, const Number *x_U, Index n_con, const Number *g_L, const Number *g_U, Index nele_jac, Index nele_hess, Index index_style, const Number *start_x, const Number *start_lam, const Number *start_z_L, const Number *start_z_U, Eval_F_CB eval_f, Eval_G_CB eval_g, Eval_Grad_F_CB eval_grad_f, Eval_Jac_G_CB eval_jac_g, Eval_H_CB eval_h, Number *x_sol, Number *z_L_sol, Number *z_U_sol, Number *g_sol, Number *lam_sol, Number *obj_sol, UserDataPtr user_data, Number obj_scaling=1, const Number *x_scaling=NULL, const Number *g_scaling=NULL)
 Constructor, given dimensions of problem, function pointers for evaluation callback functions, and starting points.
virtual ~StdInterfaceTNLP ()
 Default destructor.
methods to gather information about the NLP. These methods are

overloaded from TNLP.

See TNLP for their more detailed documentation.



virtual bool get_nlp_info (Index &n, Index &m, Index &nnz_jac_g, Index &nnz_h_lag, IndexStyleEnum &index_style)
 returns dimensions of the nlp.
virtual bool get_bounds_info (Index n, Number *x_l, Number *x_u, Index m, Number *g_l, Number *g_u)
 returns bounds of the nlp.
virtual bool get_scaling_parameters (Number &obj_scaling, bool &use_x_scaling, Index n, Number *x_scaling, bool &use_g_scaling, Index m, Number *g_scaling)
 returns scaling parameters (if nlp_scaling_method is selected as user-scaling).
virtual bool get_starting_point (Index n, bool init_x, Number *x, bool init_z, Number *z_L, Number *z_U, Index m, bool init_lambda, Number *lambda)
 provides a starting point for the nlp variables.
virtual bool eval_f (Index n, const Number *x, bool new_x, Number &obj_value)
 evaluates the objective value for the nlp.
virtual bool eval_grad_f (Index n, const Number *x, bool new_x, Number *grad_f)
 evaluates the gradient of the objective for the nlp.
virtual bool eval_g (Index n, const Number *x, bool new_x, Index m, Number *g)
 evaluates the constraint residuals for the nlp.
virtual bool eval_jac_g (Index n, const Number *x, bool new_x, Index m, Index nele_jac, Index *iRow, Index *jCol, Number *values)
 specifies the jacobian structure (if values is NULL) and evaluates the jacobian values (if values is not NULL) for the nlp.
virtual bool eval_h (Index n, const Number *x, bool new_x, Number obj_factor, Index m, const Number *lambda, bool new_lambda, Index nele_hess, Index *iRow, Index *jCol, Number *values)
 specifies the structure of the hessian of the lagrangian (if values is NULL) and evaluates the values (if values is not NULL).
Solution Methods



virtual void finalize_solution (SolverReturn status, Index n, const Number *x, const Number *z_L, const Number *z_U, Index m, const Number *g, const Number *lambda, Number obj_value, const IpoptData *ip_data, IpoptCalculatedQuantities *ip_cq)
 This method is called when the algorithm is complete so the TNLP can store/write the solution.

Private Member Functions

void apply_new_x (bool new_x, Index n, const Number *x)
 Internal function to update the internal and ampl state if the x value changes.
Default Compiler Generated Methods

(Hidden to avoid implicit creation/calling).

These methods are not implemented and we do not want the compiler to implement them for us, so we declare them private and do not define them. This ensures that they will not be implicitly created/called.



 StdInterfaceTNLP ()
 Default Constructor.
 StdInterfaceTNLP (const StdInterfaceTNLP &)
 Copy Constructor.
void operator= (const StdInterfaceTNLP &)
 Overloaded Equals Operator.

Private Attributes

SmartPtr< const Journalistjnlst_
 Journlist.
Numbernon_const_x_
 A non-const copy of x - this is kept up-to-date in apply_new_x.
Numberx_sol_
 Pointers to the user provided vectors for solution.
Numberz_L_sol_
Numberz_U_sol_
Numberg_sol_
Numberlambda_sol_
Numberobj_sol_
Information about the problem



const Index n_var_
 Number of variables.
const Index n_con_
 Number of constraints.
const Numberx_L_
 Pointer to Number array containing lower bounds for variables.
const Numberx_U_
 Pointer to Number array containing upper bounds for variables.
const Numberg_L_
 Pointer to Number array containing lower bounds for constraints.
const Numberg_U_
 Pointer to Number array containing upper bounds for constraints.
const Index nele_jac_
 Number of non-zero elements in the constraint Jacobian.
const Index nele_hess_
 Number of non-zero elements in the Hessian.
const Index index_style_
 Starting value of the iRow and jCol parameters for matrices.
const Numberstart_x_
 Pointer to Number array containing starting point for variables.
const Numberstart_lam_
 Poitner to Number array containing starting values for constraint multipliers.
const Numberstart_z_L_
 Pointer to Number array containing starting values for lower bound multipliers.
const Numberstart_z_U_
 Pointer to Number array containing starting values for upper bound multipliers.
Eval_F_CB eval_f_
 Pointer to callback function evaluating value of objective function.
Eval_G_CB eval_g_
 Pointer to callback function evaluating value of constraints.
Eval_Grad_F_CB eval_grad_f_
 Pointer to callback function evaluating gradient of objective function.
Eval_Jac_G_CB eval_jac_g_
 Pointer to callback function evaluating Jacobian of constraints.
Eval_H_CB eval_h_
 Pointer to callback function evaluating Hessian of Lagrangian.
UserDataPtr user_data_
 Pointer to user data.
Number obj_scaling_
 Objective scaling factor.
const Numberx_scaling_
 Scaling factors for variables (if not NULL).
const Numberg_scaling_
 Scaling factors for constraints (if not NULL).

Detailed Description

Implementation of a TNLP for the Standard C interface.

The standard C interface is exposed to the user as a single C function that is given problem dimension, starting points, and pointers for functions that evaluate objective function etc.

Definition at line 30 of file IpStdInterfaceTNLP.hpp.


Constructor & Destructor Documentation

Ipopt::StdInterfaceTNLP::StdInterfaceTNLP ( Index  n_var,
const Number x_L,
const Number x_U,
Index  n_con,
const Number g_L,
const Number g_U,
Index  nele_jac,
Index  nele_hess,
Index  index_style,
const Number start_x,
const Number start_lam,
const Number start_z_L,
const Number start_z_U,
Eval_F_CB  eval_f,
Eval_G_CB  eval_g,
Eval_Grad_F_CB  eval_grad_f,
Eval_Jac_G_CB  eval_jac_g,
Eval_H_CB  eval_h,
Number x_sol,
Number z_L_sol,
Number z_U_sol,
Number g_sol,
Number lam_sol,
Number obj_sol,
UserDataPtr  user_data,
Number  obj_scaling = 1,
const Number x_scaling = NULL,
const Number g_scaling = NULL 
)

Constructor, given dimensions of problem, function pointers for evaluation callback functions, and starting points.

Note that the constrctor does not make a copy of any of the Number arrays, i.e. it is up to the called to keep them around.

virtual Ipopt::StdInterfaceTNLP::~StdInterfaceTNLP (  )  [virtual]

Default destructor.

Ipopt::StdInterfaceTNLP::StdInterfaceTNLP (  )  [private]

Default Constructor.

Ipopt::StdInterfaceTNLP::StdInterfaceTNLP ( const StdInterfaceTNLP  )  [private]

Copy Constructor.


Member Function Documentation

virtual bool Ipopt::StdInterfaceTNLP::get_nlp_info ( Index n,
Index m,
Index nnz_jac_g,
Index nnz_h_lag,
IndexStyleEnum index_style 
) [virtual]

returns dimensions of the nlp.

Overloaded from TNLP

Implements Ipopt::TNLP.

virtual bool Ipopt::StdInterfaceTNLP::get_bounds_info ( Index  n,
Number x_l,
Number x_u,
Index  m,
Number g_l,
Number g_u 
) [virtual]

returns bounds of the nlp.

Overloaded from TNLP

Implements Ipopt::TNLP.

virtual bool Ipopt::StdInterfaceTNLP::get_scaling_parameters ( Number obj_scaling,
bool &  use_x_scaling,
Index  n,
Number x_scaling,
bool &  use_g_scaling,
Index  m,
Number g_scaling 
) [virtual]

returns scaling parameters (if nlp_scaling_method is selected as user-scaling).

Overloaded from TNLP

Reimplemented from Ipopt::TNLP.

virtual bool Ipopt::StdInterfaceTNLP::get_starting_point ( Index  n,
bool  init_x,
Number x,
bool  init_z,
Number z_L,
Number z_U,
Index  m,
bool  init_lambda,
Number lambda 
) [virtual]

provides a starting point for the nlp variables.

Overloaded from TNLP

Implements Ipopt::TNLP.

virtual bool Ipopt::StdInterfaceTNLP::eval_f ( Index  n,
const Number x,
bool  new_x,
Number obj_value 
) [virtual]

evaluates the objective value for the nlp.

Overloaded from TNLP

Implements Ipopt::TNLP.

virtual bool Ipopt::StdInterfaceTNLP::eval_grad_f ( Index  n,
const Number x,
bool  new_x,
Number grad_f 
) [virtual]

evaluates the gradient of the objective for the nlp.

Overloaded from TNLP

Implements Ipopt::TNLP.

virtual bool Ipopt::StdInterfaceTNLP::eval_g ( Index  n,
const Number x,
bool  new_x,
Index  m,
Number g 
) [virtual]

evaluates the constraint residuals for the nlp.

Overloaded from TNLP

Implements Ipopt::TNLP.

virtual bool Ipopt::StdInterfaceTNLP::eval_jac_g ( Index  n,
const Number x,
bool  new_x,
Index  m,
Index  nele_jac,
Index iRow,
Index jCol,
Number values 
) [virtual]

specifies the jacobian structure (if values is NULL) and evaluates the jacobian values (if values is not NULL) for the nlp.

Overloaded from TNLP

Implements Ipopt::TNLP.

virtual bool Ipopt::StdInterfaceTNLP::eval_h ( Index  n,
const Number x,
bool  new_x,
Number  obj_factor,
Index  m,
const Number lambda,
bool  new_lambda,
Index  nele_hess,
Index iRow,
Index jCol,
Number values 
) [virtual]

specifies the structure of the hessian of the lagrangian (if values is NULL) and evaluates the values (if values is not NULL).

Overloaded from TNLP

Reimplemented from Ipopt::TNLP.

virtual void Ipopt::StdInterfaceTNLP::finalize_solution ( SolverReturn  status,
Index  n,
const Number x,
const Number z_L,
const Number z_U,
Index  m,
const Number g,
const Number lambda,
Number  obj_value,
const IpoptData ip_data,
IpoptCalculatedQuantities ip_cq 
) [virtual]

This method is called when the algorithm is complete so the TNLP can store/write the solution.

Implements Ipopt::TNLP.

void Ipopt::StdInterfaceTNLP::apply_new_x ( bool  new_x,
Index  n,
const Number x 
) [private]

Internal function to update the internal and ampl state if the x value changes.

void Ipopt::StdInterfaceTNLP::operator= ( const StdInterfaceTNLP  )  [private]

Overloaded Equals Operator.

Reimplemented from Ipopt::TNLP.


Member Data Documentation

Journlist.

Definition at line 134 of file IpStdInterfaceTNLP.hpp.

Number of variables.

Definition at line 139 of file IpStdInterfaceTNLP.hpp.

Number of constraints.

Definition at line 141 of file IpStdInterfaceTNLP.hpp.

Pointer to Number array containing lower bounds for variables.

Definition at line 143 of file IpStdInterfaceTNLP.hpp.

Pointer to Number array containing upper bounds for variables.

Definition at line 145 of file IpStdInterfaceTNLP.hpp.

Pointer to Number array containing lower bounds for constraints.

Definition at line 147 of file IpStdInterfaceTNLP.hpp.

Pointer to Number array containing upper bounds for constraints.

Definition at line 149 of file IpStdInterfaceTNLP.hpp.

Number of non-zero elements in the constraint Jacobian.

Definition at line 151 of file IpStdInterfaceTNLP.hpp.

Number of non-zero elements in the Hessian.

Definition at line 153 of file IpStdInterfaceTNLP.hpp.

Starting value of the iRow and jCol parameters for matrices.

Definition at line 155 of file IpStdInterfaceTNLP.hpp.

Pointer to Number array containing starting point for variables.

Definition at line 157 of file IpStdInterfaceTNLP.hpp.

Poitner to Number array containing starting values for constraint multipliers.

Definition at line 160 of file IpStdInterfaceTNLP.hpp.

Pointer to Number array containing starting values for lower bound multipliers.

Definition at line 163 of file IpStdInterfaceTNLP.hpp.

Pointer to Number array containing starting values for upper bound multipliers.

Definition at line 166 of file IpStdInterfaceTNLP.hpp.

Pointer to callback function evaluating value of objective function.

Definition at line 168 of file IpStdInterfaceTNLP.hpp.

Pointer to callback function evaluating value of constraints.

Definition at line 170 of file IpStdInterfaceTNLP.hpp.

Pointer to callback function evaluating gradient of objective function.

Definition at line 173 of file IpStdInterfaceTNLP.hpp.

Pointer to callback function evaluating Jacobian of constraints.

Definition at line 175 of file IpStdInterfaceTNLP.hpp.

Pointer to callback function evaluating Hessian of Lagrangian.

Definition at line 177 of file IpStdInterfaceTNLP.hpp.

Pointer to user data.

Definition at line 179 of file IpStdInterfaceTNLP.hpp.

Objective scaling factor.

Definition at line 181 of file IpStdInterfaceTNLP.hpp.

Scaling factors for variables (if not NULL).

Definition at line 183 of file IpStdInterfaceTNLP.hpp.

Scaling factors for constraints (if not NULL).

Definition at line 185 of file IpStdInterfaceTNLP.hpp.

A non-const copy of x - this is kept up-to-date in apply_new_x.

Definition at line 190 of file IpStdInterfaceTNLP.hpp.

Pointers to the user provided vectors for solution.

Definition at line 193 of file IpStdInterfaceTNLP.hpp.

Definition at line 194 of file IpStdInterfaceTNLP.hpp.

Definition at line 195 of file IpStdInterfaceTNLP.hpp.

Definition at line 196 of file IpStdInterfaceTNLP.hpp.

Definition at line 197 of file IpStdInterfaceTNLP.hpp.

Definition at line 198 of file IpStdInterfaceTNLP.hpp.


The documentation for this class was generated from the following file:

Generated on 15 Mar 2015 for Coin-All by  doxygen 1.6.1