alpaqa pantr
Nonconvex constrained optimization
Loading...
Searching...
No Matches
alm-driver.hpp
Go to the documentation of this file.
1#pragma once
2
6
7#include "options.hpp"
8#include "problem.hpp"
9#include "results.hpp"
10
11template <class InnerSolver>
12auto make_alm_solver(InnerSolver &&inner_solver, Options &opts) {
13 // Settings for the ALM solver
14 using ALMSolver = alpaqa::ALMSolver<InnerSolver>;
15 typename ALMSolver::Params alm_param;
16 alm_param.max_iter = 200;
17 alm_param.tolerance = 1e-8;
18 alm_param.dual_tolerance = 1e-8;
19 alm_param.print_interval = 1;
20 alm_param.print_precision = 1;
21 set_params(alm_param, "alm", opts);
22 return ALMSolver{alm_param, std::forward<InnerSolver>(inner_solver)};
23}
24
26
27template <class InnerSolver>
29 // Settings for the solver
30 typename InnerSolver::Params solver_param;
31 solver_param.max_iter = 50'000;
32 solver_param.print_interval = 0;
33 solver_param.stop_crit = alpaqa::PANOCStopCrit::ProjGradUnitNorm;
34 set_params(solver_param, "solver", opts);
35
36 if constexpr (requires { typename InnerSolver::Direction; }) {
37 // Settings for the direction provider
38 using Direction = typename InnerSolver::Direction;
39 typename Direction::DirectionParams dir_param;
40 typename Direction::AcceleratorParams accel_param;
41 set_params(dir_param, "dir", opts);
42 set_params(accel_param, "accel", opts);
43 return InnerSolver{
44 solver_param,
45 Direction{{
46 .accelerator = accel_param,
47 .direction = dir_param,
48 }},
49 };
50 } else {
51 return InnerSolver{solver_param};
52 }
53}
54
55template <class Solver>
57 std::ostream &os, unsigned N_exp) {
58
59 // Initial guess
60 vec x = problem.initial_guess_x, y = problem.initial_guess_y;
61
62 // Solve the problem
63 auto stats = solver(problem.problem, x, y);
64
65 // Store the evaluation counters
66 auto evals = *problem.evaluations;
67
68 // Solve the problems again to average runtimes
69 auto avg_duration = stats.elapsed_time;
70 os.setstate(std::ios_base::badbit); // suppress output
71 for (unsigned i = 0; i < N_exp; ++i) {
72 x = problem.initial_guess_x;
73 y = problem.initial_guess_y;
74 auto s = solver(problem.problem, x, y);
75 if (s.status == alpaqa::SolverStatus::Interrupted) {
76 os.clear();
77 os << "\rInterrupted after " << i << " runs" << std::endl;
78 N_exp = i;
79 break;
80 }
81 avg_duration += s.elapsed_time;
82 }
83 os.clear();
84 avg_duration /= (N_exp + 1);
85
86 // Results
87 real_t final_γ = 0, final_h = 0;
88 if constexpr (requires { stats.inner.final_γ; })
89 final_γ = stats.inner.final_γ;
90 if constexpr (requires { stats.inner.final_h; })
91 final_h = stats.inner.final_h;
92 decltype(SolverResults::extra) extra{};
93 if constexpr (requires { stats.inner.linesearch_failures; })
94 extra.emplace_back(
95 "linesearch_failures",
96 static_cast<index_t>(stats.inner.linesearch_failures));
97 if constexpr (requires { stats.inner.linesearch_backtracks; })
98 extra.emplace_back(
99 "linesearch_backtracks",
100 static_cast<index_t>(stats.inner.linesearch_backtracks));
101 if constexpr (requires { stats.inner.stepsize_backtracks; })
102 extra.emplace_back(
103 "stepsize_backtracks",
104 static_cast<index_t>(stats.inner.stepsize_backtracks));
105 if constexpr (requires { stats.inner.lbfgs_failures; })
106 extra.emplace_back("lbfgs_failures",
107 static_cast<index_t>(stats.inner.lbfgs_failures));
108 if constexpr (requires { stats.inner.lbfgs_rejected; })
109 extra.emplace_back("lbfgs_rejected",
110 static_cast<index_t>(stats.inner.lbfgs_rejected));
111 return SolverResults{
112 .status = enum_name(stats.status),
113 .success = stats.status == alpaqa::SolverStatus::Converged,
114 .evals = evals,
115 .duration = avg_duration,
116 .solver = solver.get_name(),
117 .h = final_h,
118 .δ = stats.δ,
119 .ε = stats.ε,
120 .γ = final_γ,
121 .Σ = stats.norm_penalty,
122 .solution = x,
123 .multipliers = y,
124 .multipliers_bounds = vec(0),
125 .outer_iter = static_cast<index_t>(stats.outer_iterations),
126 .inner_iter = static_cast<index_t>(stats.inner.iterations),
127 .extra = std::move(extra),
128 };
129}
auto make_inner_solver(Options &opts)
Definition: alm-driver.hpp:28
SolverResults run_alm_solver(LoadedProblem &problem, Solver &solver, std::ostream &os, unsigned N_exp)
Definition: alm-driver.hpp:56
auto make_alm_solver(InnerSolver &&inner_solver, Options &opts)
Definition: alm-driver.hpp:12
Augmented Lagrangian Method solver.
Definition: alm.hpp:96
#define USING_ALPAQA_CONFIG(Conf)
Definition: config.hpp:42
std::string_view enum_name(Ipopt::ApplicationReturnStatus s)
Definition: ipopt-enums.hpp:6
@ ProjGradUnitNorm
∞-norm of the projected gradient with unit step size:
@ Interrupted
Solver was interrupted by the user.
@ Converged
Converged and reached given tolerance.
decltype(auto) set_params(T &t, std::string_view prefix, Options &opts)
Definition: options.hpp:29
vec initial_guess_y
Unknowns.
Definition: problem.hpp:20
vec initial_guess_x
Definition: problem.hpp:19
alpaqa::TypeErasedProblem< config_t > problem
Definition: problem.hpp:15
std::shared_ptr< alpaqa::EvalCounter > evaluations
Definition: problem.hpp:18
std::vector< std::pair< std::string, any_stat_t > > extra
Definition: results.hpp:36
std::string_view status
Definition: results.hpp:24