Stan Math Library
4.9.0
Automatic Differentiation
|
#include <stan/math/prim/fun/Eigen.hpp>
#include <stan/math/prim/meta/bool_constant.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_base_pointer_convertible.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. | |
Typedefs | |
template<typename T > | |
using | stan::is_eigen_dense_dynamic = stan::internal::is_eigen_matrix_dynamic_impl< std::decay_t< T >, stan::is_eigen_dense_base< std::decay_t< T > >::value > |
Checks whether type T is derived from Eigen::DenseBase and has dynamic rows and columns. | |
template<typename T > | |
using | stan::require_eigen_dense_dynamic_t = require_t< is_eigen_dense_dynamic< std::decay_t< T > > > |
Require type satisfies is_eigen_dense_dynamic. | |
template<typename... Types> | |
using | stan::require_all_eigen_dense_dynamic_t = require_all_t< is_eigen_dense_dynamic< std::decay_t< Types > >... > |
Require all of the types satisfy is_eigen_dense_dynamic. | |
template<template< class... > class TypeCheck, class... Check> | |
using | stan::require_eigen_dense_dynamic_vt = require_t< container_type_check_base< is_eigen_dense_dynamic, value_type_t, TypeCheck, Check... > > |
Require type satisfies is_eigen_dense_dynamic. | |