Stan Math Library
4.9.0
Automatic Differentiation
|
#include <stan/math/prim/meta/conjunction.hpp>
#include <stan/math/prim/meta/disjunction.hpp>
#include <stan/math/prim/meta/is_var.hpp>
#include <stan/math/prim/meta/is_eigen.hpp>
#include <stan/math/prim/meta/is_vector.hpp>
Go to the source code of this file.
Classes | |
struct | stan::is_var_matrix< T > |
Check if a type is a var_value whose value_type is derived from Eigen::EigenBase More... | |
struct | stan::is_var_col_vector< T > |
Check if a type is a var_value whose value_type is derived from Eigen::EigenBase . More... | |
struct | stan::is_var_row_vector< T > |
Check if a type is a var_value whose value_type is derived from Eigen::EigenBase . More... | |
struct | stan::is_var_vector< T > |
Check if a type is a var_value whose value_type is derived from Eigen::EigenBase . More... | |
struct | stan::is_any_var_matrix< Types > |
Check if any types in a parameter pack are a var_value whose value_type is derived from Eigen::EigenBase 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::require_var_matrix_t = require_t< is_var_matrix< std::decay_t< T > > > |
Require type satisfies is_var_matrix. | |
template<typename T > | |
using | stan::require_not_var_matrix_t = require_not_t< is_var_matrix< std::decay_t< T > > > |
Require type does not satisfy is_var_matrix. | |
template<typename... Types> | |
using | stan::require_all_var_matrix_t = require_all_t< is_var_matrix< std::decay_t< Types > >... > |
Require all of the types satisfy is_var_matrix. | |
template<typename... Types> | |
using | stan::require_any_var_matrix_t = require_any_t< is_var_matrix< std::decay_t< Types > >... > |
Require any of the types satisfy is_var_matrix. | |
template<typename... Types> | |
using | stan::require_all_not_var_matrix_t = require_all_not_t< is_var_matrix< std::decay_t< Types > >... > |
Require none of the types satisfy is_var_matrix. | |
template<typename T > | |
using | stan::require_var_col_vector_t = require_t< is_var_col_vector< std::decay_t< T > > > |
Require type satisfies is_var_col_vector. | |
template<typename T > | |
using | stan::require_not_var_col_vector_t = require_not_t< is_var_col_vector< std::decay_t< T > > > |
Require type does not satisfy is_var_col_vector. | |
template<typename T > | |
using | stan::require_var_row_vector_t = require_t< is_var_row_vector< std::decay_t< T > > > |
Require type satisfies is_var_row_vector. | |
template<typename T > | |
using | stan::require_var_vector_t = require_t< is_var_vector< std::decay_t< T > > > |
Require type satisfies is_var_vector. | |
template<typename... Types> | |
using | stan::require_all_var_vector_t = require_all_t< is_var_vector< std::decay_t< Types > >... > |
Require all of the types satisfy is_var_vector. | |
template<typename... Types> | |
using | stan::require_any_var_vector_t = require_any_t< is_var_vector< std::decay_t< Types > >... > |
Require any of the types satisfy is_var_vector. | |