Stan Math Library  2.20.0
reverse mode automatic differentiation
operator_greater_than_or_equal.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_REV_CORE_OPERATOR_GREATER_THAN_OR_EQUAL_HPP
2 #define STAN_MATH_REV_CORE_OPERATOR_GREATER_THAN_OR_EQUAL_HPP
3 
5 
6 namespace stan {
7 namespace math {
8 
27 inline bool operator>=(const var& a, const var& b) {
28  return a.val() >= b.val();
29 }
30 
40 inline bool operator>=(const var& a, double b) { return a.val() >= b; }
41 
51 inline bool operator>=(double a, const var& b) { return a >= b.val(); }
52 
53 } // namespace math
54 } // namespace stan
55 #endif
Independent (input) and dependent (output) variables for gradients.
Definition: var.hpp:33
bool operator>=(const fvar< T > &x, const fvar< T > &y)
Return true if the value of the first argument is greater than or equal to that of the second as defi...
double val() const
Return the value of this variable.
Definition: var.hpp:294

     [ Stan Home Page ] © 2011–2018, Stan Development Team.