Stan Math Library  2.12.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, const double b) {
41  return a.val() >= b;
42  }
43 
53  inline bool operator>=(const double a, const var& b) {
54  return a >= b.val();
55  }
56 
57  }
58 }
59 #endif
Independent (input) and dependent (output) variables for gradients.
Definition: var.hpp:30
bool operator>=(const fvar< T > &x, const fvar< T > &y)
double val() const
Return the value of this variable.
Definition: var.hpp:229

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