Skip to content
Snippets Groups Projects

rm some uses of Boost

Merged Wuttke, Joachim requested to merge j.2 into main
@@ -15,7 +15,7 @@
#include "Sample/Interface/LayerRoughness.h"
#include "Base/Py/PyFmt.h"
#include "Base/Util/Assert.h"
#include <cmath>
#include <boost/math/special_functions/bessel.hpp>
#include <numbers>
using std::numbers::pi;
@@ -73,7 +73,7 @@ double LayerRoughness::corrFunction(const R3 k) const
double clength = m_lateral_corr_length;
double R = sqrt(k.x() * k.x() + k.y() * k.y());
return m_sigma * m_sigma * std::pow(2., 1 - H) / tgamma(H) * std::pow(R / clength, H)
* std::cyl_bessel_k(H, R / clength);
* boost::math::cyl_bessel_k(H, R / clength);
}
std::string LayerRoughness::pythonConstructor() const
Loading