We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 444c2e8 commit 609b4d5Copy full SHA for 609b4d5
stan/math/prim/fun/owens_t.hpp
@@ -2,6 +2,7 @@
2
#define STAN_MATH_PRIM_FUN_OWENS_T_HPP
3
4
#include <stan/math/prim/meta.hpp>
5
+#include <stan/math/prim/fun/boost_policy.hpp>
6
#include <stan/math/prim/functor/apply_scalar_binary.hpp>
7
#include <boost/math/special_functions/owens_t.hpp>
8
@@ -55,7 +56,9 @@ namespace math {
55
56
* @param a Second argument
57
* @return Owen's T function applied to the arguments.
58
*/
-inline double owens_t(double h, double a) { return boost::math::owens_t(h, a); }
59
+inline double owens_t(double h, double a) {
60
+ return boost::math::owens_t(h, a, boost_policy_t<>());
61
+}
62
63
/**
64
* Enables the vectorized application of the owens_t
0 commit comments