Searched refs:x_copy (Results 1 – 7 of 7) sorted by relevance
/third_party/boost/libs/math/test/ |
D | pchip_test.cpp | 32 auto x_copy = x; in test_constant() local 34 auto pchip_spline = pchip(std::move(x_copy), std::move(y_copy)); in test_constant() 70 auto x_copy = x; in test_linear() local 72 auto pchip_spline = pchip(std::move(x_copy), std::move(y_copy)); in test_linear() 89 x_copy = x; in test_linear() 91 pchip_spline = pchip(std::move(x_copy), std::move(y_copy)); in test_linear() 97 x_copy = x; in test_linear() 100 pchip_spline = pchip(std::move(x_copy), std::move(y_copy), Real(1), Real(1)); in test_linear() 147 auto x_copy = x; in test_interpolation_condition() local 149 auto s = pchip(std::move(x_copy), std::move(y_copy)); in test_interpolation_condition() [all …]
|
D | makima_test.cpp | 32 auto x_copy = x; in test_constant() local 34 auto akima = makima(std::move(x_copy), std::move(y_copy)); in test_constant() 69 auto x_copy = x; in test_linear() local 71 auto akima = makima(std::move(x_copy), std::move(y_copy)); in test_linear() 88 x_copy = x; in test_linear() 90 akima = makima(std::move(x_copy), std::move(y_copy)); in test_linear() 96 x_copy = x; in test_linear() 99 akima = makima(std::move(x_copy), std::move(y_copy), Real(1), Real(1)); in test_linear() 146 auto x_copy = x; in test_interpolation_condition() local 148 auto s = makima(std::move(x_copy), std::move(y_copy)); in test_interpolation_condition() [all …]
|
D | cubic_hermite_test.cpp | 40 auto x_copy = x; in test_constant() local 43 auto hermite_spline = cubic_hermite(std::move(x_copy), std::move(y_copy), std::move(dydx_copy)); in test_constant() 94 auto x_copy = x; in test_linear() local 97 auto hermite_spline = cubic_hermite(std::move(x_copy), std::move(y_copy), std::move(dydx_copy)); in test_linear() 116 x_copy = x; in test_linear() 119 hermite_spline = cubic_hermite(std::move(x_copy), std::move(y_copy), std::move(dydx_copy)); in test_linear() 200 auto x_copy = x; in test_interpolation_condition() local 203 auto s = cubic_hermite(std::move(x_copy), std::move(y_copy), std::move(dydx_copy)); in test_interpolation_condition()
|
D | test_barycentric_rational.cpp | 52 std::vector<Real> x_copy = x; in test_interpolation_condition() local 56 for (size_t i = 0; i < x_copy.size(); ++i) in test_interpolation_condition() 58 Real z = move_interpolator(x_copy[i]); in test_interpolation_condition()
|
D | septic_hermite_test.cpp | 481 auto x_copy = x; in test_interpolation_condition() local 486 …auto s = septic_hermite(std::move(x_copy), std::move(y_copy), std::move(dydx_copy), std::move(d2yd… in test_interpolation_condition()
|
D | quintic_hermite_test.cpp | 240 auto x_copy = x; in test_interpolation_condition() local 244 …auto s = quintic_hermite(std::move(x_copy), std::move(y_copy), std::move(dydx_copy), std::move(d2y… in test_interpolation_condition()
|
/third_party/boost/libs/math/example/daubechies_wavelets/ |
D | find_best_daubechies_interpolator.cpp | 274 auto x_copy = x; in find_best_interpolator() local 276 auto pc = boost::math::interpolators::pchip(std::move(x_copy), std::move(phi_copy)); in find_best_interpolator() 293 auto x_copy = x; in find_best_interpolator() local 294 auto pc = boost::math::interpolators::makima(std::move(x_copy), std::move(phi_copy)); in find_best_interpolator()
|