Automatic Differentiation
 
Loading...
Searching...
No Matches
is_var_dense_dynamic.hpp
Go to the documentation of this file.
1#ifndef STAN_MATH_PRIM_META_IS_VAR_DENSE_DYNAMIC
2#define STAN_MATH_PRIM_META_IS_VAR_DENSE_DYNAMIC
3
8
9namespace stan {
16template <typename T>
18 : bool_constant<math::conjunction<
19 is_var<T>, is_eigen_dense_dynamic<value_type_t<T>>>::value> {};
20
27template <typename T>
32} // namespace stan
33
34#endif
require_t< is_var_dense_dynamic< std::decay_t< T > > > require_var_dense_dynamic_t
Require type satisfies is_var_dense_dynamic.
std::enable_if_t< Check::value > require_t
If condition is true, template is enabled.
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...
Definition fvar.hpp:9
Check if a type is a var_value whose value_type is derived from Eigen::EigenBase and has dynamic rows...