11#if ALPAQA_WITH_EXTERNAL_CASADI
12#include <casadi/core/external.hpp>
25namespace fs = std::filesystem;
27namespace casadi_loader {
35 std::optional<CasADiFunctionEvaluator<Conf, 2, 1>>
g = std::nullopt;
36 std::optional<CasADiFunctionEvaluator<Conf, 3, 1>>
grad_g_prod =
38 std::optional<CasADiFunctionEvaluator<Conf, 2, 1>>
jac_g = std::nullopt;
39 std::optional<CasADiFunctionEvaluator<Conf, 3, 1>>
grad_L = std::nullopt;
40 std::optional<CasADiFunctionEvaluator<Conf, 5, 1>>
hess_L_prod =
42 std::optional<CasADiFunctionEvaluator<Conf, 4, 1>>
hess_L = std::nullopt;
43 std::optional<CasADiFunctionEvaluator<Conf, 6, 2>>
ψ = std::nullopt;
44 std::optional<CasADiFunctionEvaluator<Conf, 6, 2>>
ψ_grad_ψ = std::nullopt;
45 std::optional<CasADiFunctionEvaluator<Conf, 8, 1>>
hess_ψ_prod =
47 std::optional<CasADiFunctionEvaluator<Conf, 7, 1>>
hess_ψ = std::nullopt;
49 template <
class Loader>
51 {
loader(name) } -> std::same_as<casadi::Function>;
52 {
loader.format_name(name) } -> std::same_as<std::string>;
59 using namespace std::literals::string_literals;
62 "Invalid number of input arguments: got "s +
63 std::to_string(
gfun.n_in()) +
", should be 2.");
66 "Invalid number of output arguments: got "s +
67 std::to_string(
gfun.n_in()) +
", should be 0 or 1.");
68 if (
gfun.size2_in(0) != 1)
70 "First input argument should be a column vector.");
71 if (
gfun.size2_in(1) != 1)
73 "Second input argument should be a column vector.");
74 if (
gfun.n_out() == 1 &&
gfun.size2_out(0) != 1)
76 "First output argument should be a column vector.");
78 if (
gfun.n_out() == 1)
81 if (
gfun.n_out() == 0) {
84 "Function g has no outputs but m != 0");
89 return std::make_optional(std::move(
g));
94 return std::make_unique<CasADiFunctionsWithParam>(
115 loader,
"psi",
dims(
n,
p,
m,
m,
m,
m),
dims(1,
m)),
117 loader,
"psi_grad_psi",
dims(
n,
p,
m,
m,
m,
m),
dims(1,
n)),
119 loader,
"hess_psi_prod",
dims(
n,
p,
m,
m, 1,
m,
m,
n),
132template <Config Conf>
138template <Config Conf>
144 auto operator()(
const std::string &name)
const {
156 this->C = Box<config_t>{impl->n};
157 this->D = Box<config_t>{impl->m};
164template <Config Conf>
167#if ALPAQA_WITH_EXTERNAL_CASADI
170 auto operator()(
const std::string &name)
const {
171 return casadi::Function::deserialize(functions.
functions.at(name));
174 return "SerializedCasADiFunctions['" + name +
"']";
182 this->C = Box<config_t>{impl->n};
183 this->D = Box<config_t>{impl->m};
185 std::ignore = functions;
186 throw std::runtime_error(
187 "This version of alpaqa was compiled without the CasADi C++ library");
191template <Config Conf>
197 auto operator()(
const std::string &name)
const {
201 return "CasADiFunctions['" + name +
"']";
209 this->C = Box<config_t>{impl->n};
210 this->D = Box<config_t>{impl->m};
213template <Config Conf>
215 const std::filesystem::path &
filepath,
char sep) {
219 throw std::runtime_error(
"Unable to open data file \"" +
228 return static_cast<void>(
data_file.get());
232 auto s = csv::read_row_std_vector<real_t>(
data_file, sep);
237 throw std::runtime_error(
"Unable to read " + std::string(name) +
238 " from data file \"" +
filepath.string() +
239 ':' + std::to_string(
line) +
244 auto read_single = [&](std::string_view name,
auto &
v) {
247 throw std::runtime_error(
"Unable to read " + std::string(name) +
248 " from data file \"" +
filepath.string() +
249 ':' + std::to_string(
line) +
'"');
259 read_single(
"penalty_alm_split", this->penalty_alm_split);
264template <Config Conf>
266template <Config Conf>
269template <Config Conf>
281 impl->f({x.data(), param.data()}, {&f});
285template <Config Conf>
288 impl->f_grad_f({x.data(), param.data()}, {&f,
grad_fx.data()});
291template <Config Conf>
294 impl->f_grad_f({x.data(), param.data()}, {&f,
grad_fx.data()});
298template <Config Conf>
303 (*impl->g)({x.data(), param.data()}, {g.data()});
308template <Config Conf>
314 if (impl->grad_g_prod)
315 (*impl->grad_g_prod)({x.data(), param.data(), y.data()}, {
gxy.data()});
320template <Config Conf>
324 impl->grad_ψ({x.data(), param.data(), y.data(), Σ.data(),
325 this->D.lowerbound.data(),
this->D.upperbound.data()},
330 eval_ψ_grad_ψ(x, y, Σ, grad_ψ, work_n, work_m);
334template <Config Conf>
339 throw std::logic_error(
"CasADiProblem::eval_ψ_grad_ψ");
341 (*impl->ψ_grad_ψ)({x.data(), param.data(), y.data(), Σ.data(),
342 this->D.lowerbound.data(), this->D.upperbound.data()},
343 {&ψ, grad_ψ.data()});
347template <Config Conf>
351 throw std::logic_error(
"CasADiProblem::eval_grad_L");
352 (*impl->grad_L)({x.data(), param.data(), y.data()}, {grad_L.data()});
355template <Config Conf>
359 throw std::logic_error(
"CasADiProblem::eval_ψ");
361 (*impl->ψ)({x.data(), param.data(), y.data(), Σ.data(),
362 this->D.lowerbound.data(), this->D.upperbound.data()},
367template <Config Conf>
372template <Config Conf>
376 using map_t =
typename SparseCSC::index_vector_map_t;
379 .cols =
static_cast<index_t>(
sp.size2()),
380 .symmetry = symmetry,
383 .order = SparseCSC::SortedRows,
387template <Config Conf>
394 if (!impl->jac_g.has_value())
396 const auto &
sp = impl->jac_g->fun.sparsity_out(0);
402template <Config Conf>
405 throw std::logic_error(
"CasADiProblem::eval_jac_g");
406 (*impl->jac_g)({x.data(), param.data()}, {
J_values.data()});
409template <Config Conf>
412 if (!impl->hess_L_prod)
413 throw std::logic_error(
"CasADiProblem::eval_ψ");
414 (*impl->hess_L_prod)({x.data(), param.data(), y.data(), &
scale,
v.data()},
418template <Config Conf>
425 if (!impl->hess_L.has_value())
427 const auto &
sp = impl->hess_L->fun.sparsity_out(0);
432template <Config Conf>
436 throw std::logic_error(
"CasADiProblem::eval_hess_L");
437 (*impl->hess_L)({x.data(), param.data(), y.data(), &
scale},
441template <Config Conf>
445 if (!impl->hess_ψ_prod)
446 throw std::logic_error(
"CasADiProblem::eval_hess_ψ_prod");
447 (*impl->hess_ψ_prod)({x.data(), param.data(), y.data(), Σ.data(), &
scale,
448 this->D.lowerbound.data(), this->D.upperbound.data(),
453template <Config Conf>
460 if (!impl->hess_ψ.has_value())
462 const auto &
sp = impl->hess_ψ->fun.sparsity_out(0);
467template <Config Conf>
471 throw std::logic_error(
"CasADiProblem::eval_hess_ψ");
472 (*impl->hess_ψ)({x.data(), param.data(), y.data(), Σ.data(), &
scale,
473 this->D.lowerbound.data(), this->D.upperbound.data()},
477template <Config Conf>
481template <Config Conf>
483 return impl->ψ.has_value();
485template <Config Conf>
487 return impl->ψ_grad_ψ.has_value();
489template <Config Conf>
491 return impl->ψ_grad_ψ.has_value();
493template <Config Conf>
495 return impl->grad_L.has_value();
497template <Config Conf>
499 return impl->jac_g.has_value();
501template <Config Conf>
503 return impl->hess_L_prod.has_value();
505template <Config Conf>
507 return impl->hess_L.has_value();
509template <Config Conf>
511 return impl->hess_ψ_prod.has_value();
513template <Config Conf>
515 return impl->hess_ψ.has_value();
518template <Config Conf>
#define BEGIN_ALPAQA_CASADI_LOADER_NAMESPACE
#define END_ALPAQA_CASADI_LOADER_NAMESPACE
Implements common problem functions for minimization problems with box constraints.
Problem definition for a CasADi problem, loaded from a DLL.
bool provides_eval_hess_L() const
std::string get_name() const
void eval_g(crvec x, rvec g) const
bool provides_eval_hess_ψ_prod() const
bool provides_eval_ψ_grad_ψ() const
void eval_jac_g(crvec x, rvec J_values) const
Sparsity get_jac_g_sparsity() const
Sparsity get_hess_ψ_sparsity() const
bool provides_eval_jac_g() const
void eval_hess_ψ(crvec x, crvec y, crvec Σ, real_t scale, rvec H_values) const
Sparsity get_hess_L_sparsity() const
void load_numerical_data(const std::filesystem::path &filepath, char sep=',')
Load the numerical problem data (bounds and parameters) from a CSV file.
CasADiProblem & operator=(const CasADiProblem &)
void eval_grad_L(crvec x, crvec y, rvec grad_L, rvec work_n) const
real_t eval_ψ(crvec x, crvec y, crvec Σ, rvec ŷ) const
CasADiProblem(const std::string &filename)
Load a problem generated by CasADi (with parameters).
bool provides_eval_hess_L_prod() const
real_t eval_f_grad_f(crvec x, rvec grad_fx) const
void eval_grad_g_prod(crvec x, crvec y, rvec grad_gxy) const
void eval_hess_L_prod(crvec x, crvec y, real_t scale, crvec v, rvec Hv) const
bool provides_eval_grad_gi() const
void eval_grad_f(crvec x, rvec grad_fx) const
real_t eval_ψ_grad_ψ(crvec x, crvec y, crvec Σ, rvec grad_ψ, rvec work_n, rvec work_m) const
bool provides_eval_grad_L() const
bool provides_eval_grad_ψ() const
void eval_grad_gi(crvec x, index_t i, rvec grad_i) const
void eval_hess_L(crvec x, crvec y, real_t scale, rvec H_values) const
bool provides_eval_hess_ψ() const
void eval_grad_ψ(crvec x, crvec y, crvec Σ, rvec grad_ψ, rvec work_n, rvec work_m) const
bool provides_eval_ψ() const
void eval_hess_ψ_prod(crvec x, crvec y, crvec Σ, real_t scale, crvec v, rvec Hv) const
Class for evaluating CasADi functions, allocating the necessary workspace storage in advance for allo...
static void validate_dimensions(const casadi::Function &fun, const std::array< casadi_dim, N_in > &dim_in={}, const std::array< casadi_dim, N_out > &dim_out={})
#define USING_ALPAQA_CONFIG(Conf)
auto wrapped_load(Loader &&loader, const char *name, Args &&...args)
std::optional< T > try_load(Loader &&loader, const char *name, Args &&...args)
constexpr auto dims(auto... a)
std::pair< casadi_int, casadi_int > dim
auto wrap_load(Loader &&loader, const char *name, F f)
Function external(const std::string &name, const std::string &bin_name)
Load the given CasADi function from the given DLL/SO file.
void read_row(std::istream &is, Eigen::Ref< Eigen::VectorX< Eigen::Index > > v, char sep)
auto casadi_to_index(casadi_int i) -> index_t< Conf >
Symmetry
Describes the symmetry of matrices.
@ Unsymmetric
No symmetry.
@ Upper
Symmetric, upper-triangular part is stored.
typename Conf::real_t real_t
typename Conf::index_t index_t
Sparsity< Conf > convert_csc(const auto &sp, sparsity::Symmetry symmetry)
typename Conf::length_t length_t
typename Conf::cmvec cmvec
typename Conf::crvec crvec
std::map< std::string, std::string > functions
std::map< std::string, casadi::Function > functions
std::optional< CasADiFunctionEvaluator< Conf, 5, 1 > > hess_L_prod
std::optional< CasADiFunctionEvaluator< Conf, 7, 1 > > hess_ψ
static std::unique_ptr< CasADiFunctionsWithParam > load(Loader &&loader)
std::optional< CasADiFunctionEvaluator< Conf, 6, 2 > > ψ_grad_ψ
std::optional< CasADiFunctionEvaluator< Conf, 4, 1 > > hess_L
CasADiFunctionEvaluator< Conf, 2, 1 > f
std::optional< CasADiFunctionEvaluator< Conf, 8, 1 > > hess_ψ_prod
std::optional< CasADiFunctionEvaluator< Conf, 3, 1 > > grad_L
std::optional< CasADiFunctionEvaluator< Conf, 2, 1 > > jac_g
std::optional< CasADiFunctionEvaluator< Conf, 3, 1 > > grad_g_prod
std::optional< CasADiFunctionEvaluator< Conf, 2, 1 > > g
std::optional< CasADiFunctionEvaluator< Conf, 6, 2 > > ψ
CasADiFunctionEvaluator< Conf, 2, 2 > f_grad_f
Sparse compressed-column structure (CCS or CSC).
Stores any of the supported sparsity patterns.