Automatic Differentiation
 
Loading...
Searching...
No Matches
is_dense_dynamic.hpp File Reference

Go to the source code of this file.

Classes

struct  stan::internal::is_dense_dynamic_impl< T, typename >
 
struct  stan::internal::is_dense_dynamic_impl< T, require_t< is_eigen_dense_dynamic< std::decay_t< T > > > >
 
struct  stan::internal::is_dense_dynamic_impl< T, require_t< is_var< T > > >
 

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.