2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 16:32:10 +00:00
Files
math/test/compile_test/random_search_incl_test.cpp
2024-02-12 16:55:44 -08:00

23 lines
798 B
C++

// 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);
}