![]() |
Stan Math Library
5.1.0
Automatic Differentiation
|
Go to the source code of this file.
Namespaces | |
namespace | stan |
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation from C or the boost::math::lgamma implementation. | |
namespace | stan::math |
Matrices and templated mathematical functions. | |
namespace | stan::math::internal |
A comparator that works for any container type that has the brackets operator. | |
Functions | |
template<typename T1 , typename T2 > | |
constexpr bool | stan::math::internal::eigen_static_size_match (T1 desired, T2 actual) |
template<typename T_desired , typename T_actual , typename = std::enable_if_t<std::is_same<std::decay_t<T_actual>, std::decay_t<T_desired>>::value && !is_eigen<T_desired>::value>> | |
T_actual && | stan::math::forward_as (T_actual &&a) |
Assume which type we get. | |
template<typename T_desired , typename T_actual , require_any_not_eigen_t< T_desired, T_actual > * = nullptr, typename = std::enable_if_t< !std::is_same<std::decay<T_actual>, std::decay<T_desired>>::value && !(std::is_floating_point_v<std::decay_t< T_desired>> && std::is_integral_v<std::decay_t<T_actual>>)>> | |
T_desired | stan::math::forward_as (const T_actual &a) |
Assume which type we get. | |
template<typename T_desired , typename T_actual , typename = std::enable_if_t< std::is_floating_point_v<std::decay_t< T_desired>> && std::is_integral_v<std::decay_t<T_actual>>>> | |
T_desired | stan::math::forward_as (const T_actual &a) |
Assume which type we get. | |
template<typename T_desired , typename T_actual , require_eigen_t< T_desired > * = nullptr, std::enable_if_t< std::is_same< value_type_t< T_actual >, value_type_t< T_desired > >::value &&is_eigen< T_desired >::value &&is_eigen< T_actual >::value &&internal::eigen_static_size_match(T_desired::RowsAtCompileTime, std::decay_t< T_actual >::RowsAtCompileTime) &&internal::eigen_static_size_match(T_desired::ColsAtCompileTime, std::decay_t< T_actual >::ColsAtCompileTime)> * = nullptr> | |
T_actual && | stan::math::forward_as (T_actual &&a) |
Assume which type we get. | |