/* * Fatrop - A fast trajectory optimization solver * Copyright (C) 2022 - 2024 Lander Vanroye, KU Leuven. All rights reserved. * * This file is part of Fatrop. * * Fatrop is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Fatrop is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with Fatrop. If not, see . */ #ifndef OCPALGINCLUDED #define OCPALGINCLUDED #include "fatrop/blasfeo_wrapper/LinearAlgebraBlasfeo.hpp" #include "fatrop/templates/NLPAlg.hpp" #include "OCPKKT.hpp" #include "OCPLinearSolver.hpp" #include "OCPScalingMethod.hpp" #include "DuInfEvaluator.hpp" #include "OCPInitializer.hpp" #include "fatrop/solver/FatropPrinter.hpp" // #include "fatrop/ocp/LineSearchDDP.hpp" // #include "sparse/SparseOCP.hpp" #include "OCP.hpp" #include #include "fatrop/auxiliary/Common.hpp" #include "OCPLSScaler.hpp" // #include namespace fatrop { class FatropOCP : public FatropNLP { public: // FatropOCP(); FatropOCP( const std::shared_ptr &ocp, const std::shared_ptr &ls, const std::shared_ptr &scaler, const std::shared_ptr &options, const std::shared_ptr &printer); fatrop_int eval_lag_hess( double obj_scale, const FatropVecBF &primal_vars, const FatropVecBF &slack_vars, const FatropVecBF &lam) override; fatrop_int eval_constr_jac( const FatropVecBF &primal_vars, const FatropVecBF &slack_vars) override; fatrop_int solve_pd_sys( const double inertia_correction_w, const double inertia_correction_c, const FatropVecBF &ux, const FatropVecBF &lam, const FatropVecBF &delta_s, const FatropVecBF &sigma_total, const FatropVecBF &gradb_total) override; fatrop_int solve_soc_rhs( const FatropVecBF &ux, const FatropVecBF &lam, const FatropVecBF &delta_s, const FatropVecBF &constraint_violation) override; fatrop_int compute_scalings( double &obj_scale, FatropVecBF &x_scales, FatropVecBF &lam_scales, const FatropVecBF &grad_curr_x, const FatropVecBF& grad_curr_s) override; fatrop_int eval_constraint_viol( const FatropVecBF &primal_vars, const FatropVecBF &slack_vars, FatropVecBF &constraint_violation) override; fatrop_int eval_obj_grad( double obj_scale, const FatropVecBF &primal_vars, const FatropVecBF &slack_vars, FatropVecBF &gradient_x,FatropVecBF &gradient_s) override; fatrop_int eval_obj( double obj_scale, const FatropVecBF &primal_vars, const FatropVecBF &slack_vars, double &res) override; fatrop_int eval_dual_inf( double obj_scale, const FatropVecBF &lam, const FatropVecBF &grad_x, const FatropVecBF &grad_s, FatropVecBF &du_inf_x, FatropVecBF& du_inf_s) override; fatrop_int initialize_slacks(double mu0, FatropVecBF &s_curr) override; fatrop_int initialize_dual( const FatropVecBF &grad_x, const FatropVecBF &grad_s, FatropVecBF &dlam, const FatropVecBF &zL, const FatropVecBF &zU) override; fatrop_int get_bounds( FatropVecBF &lower, FatropVecBF &upper) const override { return ocp_->get_bounds(lower, upper); }; fatrop_int get_initial_sol_guess( FatropVecBF &initial) const override { return ocp_->get_initial_sol_guess(initial); }; // int GetDefaultParams( // FatropOptions ¶ms) const override // { // return ocp_->GetDefaultParams(params); // }; NLPDims get_nlp_dims() const override; void finalize() override; void reset() override; public: std::shared_ptr ocp_; OCPDims dims_; NLPDims nlpdims_; std::shared_ptr ls_; std::shared_ptr scaler_; std::shared_ptr options_; std::shared_ptr printer_; DuInfEvaluator duinfevaluator_; OCPKKTMemory ocpkktmemory_; OCPInitializer OCPInitializer_; FatropMemoryVecBF s_memvec; FatropMemoryVecBF ux_memvec; FatropVecBF sigma; FatropVecBF gradb; FatropVecBF s_dummy; FatropVecBF s_zero; FatropVecBF ux_dummy; FatropMemoryVecBF rhs_rq; FatropMemoryVecBF rhs_b; FatropMemoryVecBF rhs_g; FatropMemoryVecBF rhs_g_ineq; FatropMemoryVecBF rhs_gradb; FatropMemoryVecBF rhs_rq2; FatropMemoryVecBF rhs_b2; FatropMemoryVecBF rhs_g2; FatropMemoryVecBF rhs_g_ineq2; FatropMemoryVecBF rhs_gradb2; FatropMemoryVecBF gradb_total_cache; FatropMemoryVecBF sigma_total_cache; FatropMemoryVecBF ux_test; FatropMemoryVecBF lam_test; FatropMemoryVecBF delta_s_test; double inertia_correction_w_cache; double inertia_correction_c_cache; bool it_ref; bool ls_scaling; OCPLSScaler lsscaler_; }; } // namespace fatrop #endif // OCPALGINCLUDED