ipopt_adapter.h
Go to the documentation of this file.
00001 /******************************************************************************
00002 Copyright (c) 2017, Alexander W. Winkler, ETH Zurich. All rights reserved.
00003 
00004 Redistribution and use in source and binary forms, with or without modification,
00005 are permitted provided that the following conditions are met:
00006     * Redistributions of source code must retain the above copyright notice,
00007       this list of conditions and the following disclaimer.
00008     * Redistributions in binary form must reproduce the above copyright notice,
00009       this list of conditions and the following disclaimer in the documentation
00010       and/or other materials provided with the distribution.
00011     * Neither the name of ETH ZURICH nor the names of its contributors may be
00012       used to endorse or promote products derived from this software without
00013       specific prior written permission.
00014 
00015 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
00016 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
00017 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
00018 DISCLAIMED. IN NO EVENT SHALL ETH ZURICH BE LIABLE FOR ANY DIRECT, INDIRECT,
00019 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
00020 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
00021 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
00022 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
00023 OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
00024 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00025 ******************************************************************************/
00026 
00027 #ifndef IFOPT_INCLUDE_OPT_IPOPT_ADAPTER_H_
00028 #define IFOPT_INCLUDE_OPT_IPOPT_ADAPTER_H_
00029 
00030 #include <IpTNLP.hpp>
00031 #include <IpIpoptApplication.hpp>
00032 #include <IpSolveStatistics.hpp>
00033 
00034 #include <ifopt/problem.h>
00035 
00036 namespace ifopt {
00037 
00050 class IpoptAdapter : public Ipopt::TNLP {
00051 public:
00052   using Index    = Ipopt::Index;
00053   using VectorXd = Problem::VectorXd;
00054   using Jacobian = Problem::Jacobian;
00055 
00063   static void Solve(Problem& nlp);
00064 
00065 private:
00077   static void SetOptions(Ipopt::SmartPtr<Ipopt::IpoptApplication> app);
00078 
00079   Problem* nlp_; 
00080 
00081 private:
00088   IpoptAdapter(Problem& nlp);
00089   virtual ~IpoptAdapter() = default;
00090 
00092   virtual bool get_nlp_info(Index& n, Index& m, Index& nnz_jac_g,
00093                             Index& nnz_h_lag, IndexStyleEnum& index_style);
00094 
00096   virtual bool get_bounds_info(Index n, double* x_l, double* x_u,
00097                                Index m, double* g_l, double* g_u);
00098 
00100   virtual bool get_starting_point(Index n, bool init_x, double* x,
00101                                   bool init_z, double* z_L, double* z_U,
00102                                   Index m, bool init_lambda,
00103                                   double* lambda);
00104 
00106   virtual bool eval_f(Index n, const double* x, bool new_x, double& obj_value);
00107 
00109   virtual bool eval_grad_f(Index n, const double* x, bool new_x, double* grad_f);
00110 
00112   virtual bool eval_g(Index n, const double* x, bool new_x, Index m, double* g);
00113 
00118   virtual bool eval_jac_g(Index n, const double* x, bool new_x,
00119                           Index m, Index nele_jac, Index* iRow, Index *jCol,
00120                           double* values);
00121 
00124   virtual bool intermediate_callback(Ipopt::AlgorithmMode mode,
00125                                      Index iter, double obj_value,
00126                                      double inf_pr, double inf_du,
00127                                      double mu, double d_norm,
00128                                      double regularization_size,
00129                                      double alpha_du, double alpha_pr,
00130                                      Index ls_trials,
00131                                      const Ipopt::IpoptData* ip_data,
00132                                      Ipopt::IpoptCalculatedQuantities* ip_cq);
00133 
00136   virtual void finalize_solution(Ipopt::SolverReturn status,
00137                                  Index n, const double* x, const double* z_L, const double* z_U,
00138                                  Index m, const double* g, const double* lambda,
00139                                  double obj_value,
00140                                  const Ipopt::IpoptData* ip_data,
00141                                  Ipopt::IpoptCalculatedQuantities* ip_cq);
00142 };
00143 
00144 } // namespace opt
00145 
00146 #endif /* IFOPT_INCLUDE_OPT_IPOPT_ADAPTER_H_ */


ifopt_ipopt
Author(s): Alexander W. Winkler
autogenerated on Sat Apr 21 2018 03:01:50