Automatic Differentiation
 
Loading...
Searching...
No Matches
is_eigen_matrix.hpp File Reference

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.