1#ifndef STAN_MATH_REV_CORE_OPERATOR_NOT_EQUAL_HPP 
    2#define STAN_MATH_REV_CORE_OPERATOR_NOT_EQUAL_HPP 
   31  return a.val() != b.val();
 
   44template <
typename Arith, require_arithmetic_t<Arith>* = 
nullptr>
 
   59template <
typename Arith, require_arithmetic_t<Arith>* = 
nullptr>
 
   74  return !(x == z.real() && 0 == z.imag());
 
   87  return !(z.real() == y && z.imag() == 0);
 
bool operator!=(const fvar< T > &x, const fvar< T > &y)
Return true if the value of the two arguments are not equal as defined by !=.
 
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...