Automatic Differentiation
 
Loading...
Searching...
No Matches
isfinite.hpp
Go to the documentation of this file.
1#ifndef STAN_MATH_PRIM_SCAL_FUN_ISFINITE_HPP
2#define STAN_MATH_PRIM_SCAL_FUN_ISFINITE_HPP
3
5
6namespace stan {
7namespace math {
8
20template <typename ADType, require_autodiff_t<ADType>* = nullptr>
21inline bool isfinite(ADType&& v) {
22 using std::isfinite;
23 return isfinite(v.val());
24}
25
26} // namespace math
27} // namespace stan
28
29#endif
isfinite_< as_operation_cl_t< T > > isfinite(T &&a)
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...
Definition fvar.hpp:9