![]() |
Stan Math Library
5.1.0
Automatic Differentiation
|
#include <stan/math/prim/fun/Eigen.hpp>#include <stan/math/prim/meta/bool_constant.hpp>#include <stan/math/prim/meta/is_base_pointer_convertible.hpp>#include <stan/math/prim/meta/is_eigen_matrix.hpp>#include <stan/math/prim/meta/is_eigen_dense_base.hpp>#include <stan/math/prim/meta/is_eigen_dense_dynamic.hpp>#include <stan/math/prim/meta/is_var.hpp>#include <stan/math/prim/meta/require_helpers.hpp>#include <type_traits>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::internal |
Typedefs | |
| template<typename T > | |
| using | stan::is_dense_dynamic = internal::is_dense_dynamic_impl< std::decay_t< T > > |
Checks whether type T is derived from Eigen::DenseBase and has dynamic rows and columns or is a var_value<> whose inner type satisfies the conditions above. | |
| template<typename T > | |
| using | stan::require_dense_dynamic_t = require_t< is_dense_dynamic< std::decay_t< T > > > |
| Require type satisfies is_dense_dynamic. | |
| template<typename... Types> | |
| using | stan::require_all_dense_dynamic_t = require_all_t< is_dense_dynamic< std::decay_t< Types > >... > |
| Require all of the types satisfy is_dense_dynamic. | |