Stan Math Library
4.9.0
Automatic Differentiation
|
#include <stan/math/prim/meta/disjunction.hpp>
#include <stan/math/prim/meta/is_var.hpp>
#include <stan/math/prim/meta/is_matrix.hpp>
#include <stan/math/prim/meta/require_helpers.hpp>
#include <stan/math/prim/meta/return_type.hpp>
Go to the source code of this file.
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... Types> | |
using | stan::is_var_and_matrix_types = bool_constant< is_var< return_type_t< Types... > >::value &&stan::math::disjunction< is_matrix< Types >... >::value > |
Extends std::true_type when instantiated with at least one type that has a var scalar_type and at least one type is a matrix. | |
template<typename... Types> | |
using | stan::require_all_not_var_and_matrix_types = require_not_t< is_var_and_matrix_types< Types... > > |