1#ifndef STAN_MATH_REV_FUN_DETERMINANT_HPP
2#define STAN_MATH_REV_FUN_DETERMINANT_HPP
12template <
typename T, require_rev_matrix_t<T>* =
nullptr>
21 auto m_lu = arena_m.val().partialPivLu();
22 auto arena_m_inv_transpose =
to_arena(m_lu.inverse().transpose());
23 var det = m_lu.determinant();
26 arena_m.adj() += (det.adj() * det.val()) * arena_m_inv_transpose;
void check_square(const char *function, const char *name, const T_y &y)
Check if the specified matrix is square.
void reverse_pass_callback(F &&functor)
Puts a callback on the autodiff stack to be called in reverse pass.
value_type_t< EigMat > determinant(const EigMat &m)
arena_t< T > to_arena(const T &a)
Converts given argument into a type that either has any dynamic allocation on AD stack or schedules i...
typename internal::arena_type_impl< std::decay_t< T > >::type arena_t
Determines a type that can be used in place of T that does any dynamic allocations on the AD stack.
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...