numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
|
Definition of dividing_rectangles class. More...
#include <algorithm>
#include <cmath>
#include <cstddef>
#include <iterator>
#include <limits>
#include <memory>
#include <queue>
#include <tuple>
#include <utility>
#include <vector>
#include "num_collect/base/exception.h"
#include "num_collect/base/get_size.h"
#include "num_collect/base/index_type.h"
#include "num_collect/base/isfinite.h"
#include "num_collect/base/norm.h"
#include "num_collect/base/precondition.h"
#include "num_collect/logging/iterations/iteration_logger.h"
#include "num_collect/logging/log_tag_view.h"
#include "num_collect/logging/logging_macros.h"
#include "num_collect/opt/concepts/objective_function.h"
#include "num_collect/opt/optimizer_base.h"
#include "num_collect/util/assert.h"
#include "num_collect/util/is_eigen_vector.h"
#include "num_collect/util/safe_cast.h"
Go to the source code of this file.
Classes | |
class | num_collect::opt::dividing_rectangles< ObjectiveFunction > |
Class of dividing rectangles (DIRECT) method [12] for optimization. More... | |
struct | num_collect::opt::dividing_rectangles< ObjectiveFunction >::greater_rectangle |
Class to compare rectangles. More... | |
class | num_collect::opt::dividing_rectangles< ObjectiveFunction >::rectangle |
Class of hyper rectangle in DIRECT method. More... | |
Namespaces | |
namespace | num_collect |
Namespace of num_collect source codes. | |
namespace | num_collect::opt |
Namespace of optimization algorithms. | |
Variables | |
constexpr auto | num_collect::opt::dividing_rectangles_tag |
Tag of dividing_rectangles. | |
Definition of dividing_rectangles class.
Definition in file dividing_rectangles.h.