16auto make_inner_lbfgsb_solver(
Options &opts) {
18 InnerLBFGSBSolver::Params solver_param;
19 solver_param.max_iter = 50'000;
20 solver_param.print_interval = 0;
23 return InnerLBFGSBSolver{solver_param};
30 if (!direction.empty())
31 throw std::invalid_argument(
32 "L-BFGS-B solver does not support any directions");
33 auto inner_solver = make_inner_lbfgsb_solver(opts);
37 return [solver{std::move(solver)},
40 static std::atomic<
decltype(solver) *> solver_to_stop;
41 auto cancel = attach_cancellation<solver_to_stop>(solver);
53 throw std::invalid_argument(
54 "This version of alpaqa was compiled without L-BFGS-B support.");
SolverResults run_alm_solver(LoadedProblem &problem, Solver &solver, std::ostream &os, unsigned N_exp)
auto make_alm_solver(InnerSolver &&inner_solver, Options &opts)
Augmented Lagrangian Method solver.
#define USING_ALPAQA_CONFIG(Conf)
solver_func_t make_lbfgsb_driver(std::string_view, Options &)
@ ProjGradUnitNorm
∞-norm of the projected gradient with unit step size:
decltype(auto) set_params(T &t, std::string_view prefix, Options &opts)
std::function< solver_free_func_t > solver_func_t