![]() |
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/conjunction.hpp>#include <stan/math/prim/meta/disjunction.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.
Classes | |
| struct | stan::internal::is_eigen_matrix_dynamic_impl< T, bool > |
| Underlying implimenation to check if an Eigen matrix has rows or cols not equal to 1. More... | |
| struct | stan::internal::is_eigen_matrix_dynamic_impl< T, false > |
| struct | stan::internal::is_eigen_matrix_dynamic_impl< T, true > |
| struct | stan::is_eigen_matrix_dynamic< T > |
| Checks whether type T is derived from Eigen::MatrixBase and has columns and rows not equal to 1. 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. | |
| namespace | stan::internal |
Typedefs | |
| template<typename T > | |
| using | stan::require_eigen_matrix_dynamic_t = require_t< is_eigen_matrix_dynamic< std::decay_t< T > > > |
| Require type satisfies is_eigen_matrix_dynamic. | |
| template<typename... Types> | |
| using | stan::require_all_eigen_matrix_dynamic_t = require_all_t< is_eigen_matrix_dynamic< std::decay_t< Types > >... > |
| Require all of the types satisfy is_eigen_matrix_dynamic. | |
| template<typename... Types> | |
| using | stan::require_any_eigen_matrix_dynamic_t = require_any_t< is_eigen_matrix_dynamic< std::decay_t< Types > >... > |
| Require any of the types satisfy is_eigen_matrix_dynamic. | |
| template<template< class... > class TypeCheck, class... Check> | |
| using | stan::require_eigen_matrix_dynamic_vt = require_t< container_type_check_base< is_eigen_matrix_dynamic, value_type_t, TypeCheck, Check... > > |
| Require type satisfies is_eigen_matrix_dynamic. | |