numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
Loading...
Searching...
No Matches
multi_variate_multi_optima_function.h
Go to the documentation of this file.
1/*
2 * Copyright 2023 MusicScience37 (Kenta Kabashima)
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
20#pragma once
21
22#include <algorithm>
23#include <random>
24
25#include <Eigen/Core>
26
29
30namespace num_prob_collect::opt {
31
37public:
39 using variable_type = Eigen::VectorXd;
40
42 using value_type = double;
43
45 using hessian_type = Eigen::MatrixXd;
46
59
65 void evaluate_on(const Eigen::VectorXd& variable) noexcept {
66 value_ = ((optimal_variables_.rowwise() - variable.transpose().array())
67 .square()
68 .rowwise()
69 .sum() *
72 .minCoeff();
73 }
74
80 [[nodiscard]] auto value() const noexcept -> const double& {
81 return value_;
82 }
83
89 [[nodiscard]] auto optimal_variables() const noexcept
90 -> const Eigen::ArrayXXd& {
91 return optimal_variables_;
92 }
93
99 [[nodiscard]] auto optimal_values() const noexcept
100 -> const Eigen::ArrayXd& {
101 return optimal_values_;
102 }
103
109 [[nodiscard]] auto coefficients() const noexcept -> const Eigen::ArrayXd& {
110 return coefficients_;
111 }
112
113private:
115 Eigen::ArrayXXd optimal_variables_;
116
118 Eigen::ArrayXd optimal_values_;
119
121 Eigen::ArrayXd coefficients_;
122
124 double value_{0.0};
125};
126
131public:
133 static constexpr double min_variable = -10.0;
134
136 static constexpr double max_variable = 10.0;
137
139 static constexpr double global_optimal_value = 0.0;
140
142 static constexpr double min_non_global_optimal_value = 1.0;
143
145 static constexpr double max_non_global_optimal_value = 5.0;
146
149
160
166 [[nodiscard]] auto operator()() noexcept
168 Eigen::ArrayXXd optimal_variables;
169 optimal_variables.resize(num_local_optima_, num_variables_);
170 auto reshaped_optimal_variables = optimal_variables.reshaped();
171 std::generate(reshaped_optimal_variables.begin(),
172 reshaped_optimal_variables.end(),
173 [this] { return optimal_variable_dist_(generator_); });
174
175 Eigen::ArrayXd optimal_values;
176 optimal_values.resize(num_local_optima_);
177 optimal_values[0] = global_optimal_value;
178 std::generate(optimal_values.begin() + 1, optimal_values.end(),
179 [this] { return non_global_optimal_value_dist_(generator_); });
180
181 Eigen::ArrayXd coefficients;
182 coefficients.resize(num_local_optima_);
183 coefficients[0] = 1.0; // NOLINT
184 std::generate(coefficients.begin() + 1, coefficients.end(),
185 [this] { return coefficients_dist_(generator_); });
186
187 return multi_variate_multi_optima_function{std::move(optimal_variables),
188 std::move(optimal_values), std::move(coefficients)};
189 }
190
191private:
193 std::mt19937
194 generator_{}; // NOLINT(cert-msc32-c,cert-msc51-cpp): For reproducibility.
195
197 std::uniform_real_distribution<double> optimal_variable_dist_{
199
203
205 std::uniform_real_distribution<double> coefficients_dist_{
206 0.5, 3.0}; // NOLINT
207
210
213};
214
223public:
225 static constexpr double min_variable = -10.0;
226
228 static constexpr double max_variable = 10.0;
229
231 static constexpr double global_optimal_value = 0.0;
232
234 static constexpr double min_non_global_optimal_value = 1.0;
235
237 static constexpr double max_non_global_optimal_value = 5.0;
238
241
252
258 [[nodiscard]] auto operator()() noexcept
260 Eigen::ArrayXXd optimal_variables;
261 optimal_variables.resize(num_local_optima_, num_variables_);
262 auto reshaped_optimal_variables = optimal_variables.reshaped();
263 std::generate(reshaped_optimal_variables.begin(),
264 reshaped_optimal_variables.end(),
265 [this] { return optimal_variable_dist_(generator_); });
266
267 Eigen::ArrayXd optimal_values;
268 optimal_values.resize(num_local_optima_);
269 optimal_values[0] = global_optimal_value;
270 std::generate(optimal_values.begin() + 1, optimal_values.end(),
271 [this] { return non_global_optimal_value_dist_(generator_); });
272
273 Eigen::ArrayXd coefficients;
274 coefficients.resize(num_local_optima_);
275 coefficients[0] = 10.0; // NOLINT
276 std::generate(coefficients.begin() + 1, coefficients.end(),
277 [this] { return coefficients_dist_(generator_); });
278
279 return multi_variate_multi_optima_function{std::move(optimal_variables),
280 std::move(optimal_values), std::move(coefficients)};
281 }
282
283private:
285 std::mt19937
286 generator_{}; // NOLINT(cert-msc32-c,cert-msc51-cpp): For reproducibility.
287
289 std::uniform_real_distribution<double> optimal_variable_dist_{
291
295
297 std::uniform_real_distribution<double> coefficients_dist_{
298 0.5, 3.0}; // NOLINT
299
302
305};
306
307} // namespace num_prob_collect::opt
Class of functions of multi-variate optimization problems with multiple local optima.
auto optimal_values() const noexcept -> const Eigen::ArrayXd &
Get the optimal values.
multi_variate_multi_optima_function(Eigen::ArrayXXd optimal_variables, Eigen::ArrayXd optimal_values, Eigen::ArrayXd coefficients)
Constructor.
auto optimal_variables() const noexcept -> const Eigen::ArrayXXd &
Get the optimal variables.
void evaluate_on(const Eigen::VectorXd &variable) noexcept
Evaluate function value on variable.
auto value() const noexcept -> const double &
Get function value.
auto coefficients() const noexcept -> const Eigen::ArrayXd &
Get the coefficients for optima.
auto operator()() noexcept -> multi_variate_multi_optima_function
Generate a random quadratic function.
std::uniform_real_distribution< double > non_global_optimal_value_dist_
Distribution of non-global optimal values.
std::uniform_real_distribution< double > coefficients_dist_
Distribution of coefficients.
random_multi_variate_difficult_multi_optima_function_generator(num_collect::index_type num_variables, num_collect::index_type num_local_optima=default_num_local_optima)
Constructor.
static constexpr num_collect::index_type default_num_local_optima
Default value of the number of local optima.
std::uniform_real_distribution< double > optimal_variable_dist_
Distribution of optimal variables.
auto operator()() noexcept -> multi_variate_multi_optima_function
Generate a random quadratic function.
std::uniform_real_distribution< double > non_global_optimal_value_dist_
Distribution of non-global optimal values.
random_multi_variate_multi_optima_function_generator(num_collect::index_type num_variables, num_collect::index_type num_local_optima=default_num_local_optima)
Constructor.
std::uniform_real_distribution< double > coefficients_dist_
Distribution of coefficients.
std::uniform_real_distribution< double > optimal_variable_dist_
Distribution of optimal variables.
static constexpr num_collect::index_type default_num_local_optima
Default value of the number of local optima.
Definition of exceptions.
Definition of index_type type.
Namespace of Eigen library.
Definition variable.h:416
std::ptrdiff_t index_type
Type of indices in this library.
Definition index_type.h:33
Namespace of optimization problems.
Definition namespaces.h:25
STL namespace.