Loading [MathJax]/extensions/TeX/AMSmath.js
Stan Math Library
5.0.0
Automatic Differentiation
▼
Stan Math Library
Overview
▼
Contributor Guides
Developer Guide
Adding New Functions
Adding New Distributions
Common Pitfalls
Using requires for general overloads
Reverse Mode Types
Testing Automatic Differentiation Functions
Testing New Distributions
Add New Functions With Known Gradients
Adding New OpenCL Functions
Windows Development Tips
►
Internal Docs
►
Parallelism
(External Link) Stan Language Docs
(External Link) Stan Discourse
►
Stan Math Library Docs
►
Class List
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
is_var_eigen.hpp
Go to the documentation of this file.
1
#ifndef STAN_MATH_PRIM_META_IS_VAR_EIGEN
2
#define STAN_MATH_PRIM_META_IS_VAR_EIGEN
3
4
#include <
stan/math/prim/meta/conjunction.hpp
>
5
#include <
stan/math/prim/meta/disjunction.hpp
>
6
#include <
stan/math/prim/meta/is_var.hpp
>
7
#include <
stan/math/prim/meta/is_eigen.hpp
>
8
9
namespace
stan
{
16
template
<
typename
T>
17
struct
is_var_eigen
18
:
bool_constant
<
19
math::conjunction<is_var<T>, is_eigen<value_type_t<T>>>::value> {};
20
21
}
// namespace stan
22
23
#endif
bool_constant
conjunction.hpp
disjunction.hpp
is_eigen.hpp
stan
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...
Definition
unit_vector_constrain.hpp:15
is_var.hpp
stan::is_var_eigen
Check if a type is a var_value whose value_type is derived from Eigen::EigenBase
Definition
is_var_eigen.hpp:19
stan
math
prim
meta
is_var_eigen.hpp
[
Stan Home Page
]
© 2011–2019, Stan Development Team.