Stan Math Library
4.9.0
Automatic Differentiation
|
#include <stan/math/prim/fun/Eigen.hpp>
#include <stan/math/prim/meta/is_complex.hpp>
#include <stan/math/prim/meta/is_eigen.hpp>
#include <stan/math/prim/meta/value_type.hpp>
#include <stan/math/prim/meta/is_vector.hpp>
#include <type_traits>
#include <vector>
Go to the source code of this file.
Classes | |
struct | stan::base_type< T, typename > |
Metaprogram structure to determine the base base type of a template argument. More... | |
struct | stan::base_type< T, std::enable_if_t< is_std_vector< T >::value > > |
Specialization of base_type for vector to recursively return the inner base type. More... | |
struct | stan::base_type< T, std::enable_if_t< is_eigen< T >::value > > |
Template metaprogram defining the base base type of values stored in an Eigen matrix. More... | |
struct | stan::base_type< T, std::enable_if_t< is_complex< T >::value > > |
Template metaprogram defining the base type for values stored in a complex number. More... | |
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::base_type_t = typename base_type< T >::type |