2
0
mirror of https://github.com/boostorg/math.git synced 2026-02-27 17:12:22 +00:00

Include tests for optimization

This commit is contained in:
Nick Thompson
2024-02-12 14:24:44 -08:00
committed by Nick
parent b7a62c4a29
commit 8d47ee0f4b
9 changed files with 75 additions and 19 deletions

View File

@@ -1064,6 +1064,9 @@ test-suite interpolators :
[ run jso_test.cpp : : : [ requires cxx17_if_constexpr cxx17_std_apply ] ]
[ run random_search_test.cpp : : : [ requires cxx17_if_constexpr cxx17_std_apply ] ]
[ run cma_es_test.cpp : : : [ requires cxx17_if_constexpr cxx17_std_apply ] [ check-target-builds ../../multiprecision/config//has_eigen : : <build>no ] ]
[ compile compile_test/random_search_incl_test.cpp : [ requires cxx17_if_constexpr cxx17_std_apply ] ]
[ compile compile_test/differential_evolution_incl_test.cpp : [ requires cxx17_if_constexpr cxx17_std_apply ] ]
[ compile compile_test/jso_incl_test.cpp : [ requires cxx17_if_constexpr cxx17_std_apply ] ]
;
test-suite quadrature :

View File

@@ -0,0 +1,22 @@
// Copyright Nick Thompson 2024.
// Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
// Basic sanity check that header
// #includes all the files that it needs to.
//
#include <boost/math/optimization/differential_evolution.hpp>
//
// Note this header includes no other headers, this is
// important if this test is to be meaningful:
//
#include "test_compile_result.hpp"
void compile_and_link_test()
{
auto f = [](std::vector<double> const & v) { return v[0]*v[0]; };
boost::math::optimization::differential_evolution_parameters<std::vector<double>> params;
std::mt19937_64 gen(12345);
auto v = boost::math::optimization::differential_evolution(f, params, gen);
}

View File

@@ -0,0 +1,22 @@
// Copyright Nick Thompson 2024.
// Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
// Basic sanity check that header
// #includes all the files that it needs to.
//
#include <boost/math/optimization/jso.hpp>
//
// Note this header includes no other headers, this is
// important if this test is to be meaningful:
//
#include "test_compile_result.hpp"
void compile_and_link_test()
{
auto f = [](std::vector<double> const & v) { return v[0]*v[0]; };
boost::math::optimization::jso_parameters<std::vector<double>> params;
std::mt19937_64 gen(12345);
auto v = boost::math::optimization::jso(f, params, gen);
}

View File

@@ -0,0 +1,22 @@
// Copyright Nick Thompson 2024.
// Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
// Basic sanity check that header
// #includes all the files that it needs to.
//
#include <boost/math/optimization/random_search.hpp>
//
// Note this header includes no other headers, this is
// important if this test is to be meaningful:
//
#include "test_compile_result.hpp"
void compile_and_link_test()
{
auto f = [](std::vector<double> const & v) { return v[0]*v[0]; };
boost::math::optimization::random_search_parameters<std::vector<double>> params;
std::mt19937_64 gen(12345);
auto v = boost::math::optimization::random_search(f, params, gen);
}