Skip to content

Commit 260f760

Browse files
authored
Merge pull request #1205 from boostorg/fix_remez_incl_test
Fix remez incl test
2 parents 52da18c + 5b52283 commit 260f760

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

include_private/boost/math/tools/remez.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#pragma once
1111
#endif
1212

13-
#include <boost/math/tools/solve.hpp>
13+
#include "solve.hpp"
1414
#include <boost/math/tools/minima.hpp>
1515
#include <boost/math/tools/roots.hpp>
1616
#include <boost/math/tools/polynomial.hpp>

test/compile_test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
file(GLOB SOURCES "*.cpp")
66
add_library(boost_math-compile_tests STATIC ${SOURCES})
77
target_compile_features(boost_math-compile_tests PRIVATE cxx_std_17)
8-
target_link_libraries(boost_math-compile_tests PUBLIC Boost::math Boost::multiprecision)
8+
target_link_libraries(boost_math-compile_tests PUBLIC Boost::math Boost::multiprecision Boost::numeric_ublas)

test/compile_test/tools_remez_inc_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
//
99

1010
#ifndef BOOST_MATH_STANDALONE
11-
#include <boost/math/tools/remez.hpp>
11+
#include "../../include_private/boost/math/tools/remez.hpp"
1212
#endif

0 commit comments

Comments
 (0)