Stan Math Library  2.8.0
reverse mode automatic differentiation
 All Classes Namespaces Files Functions Variables Typedefs Enumerator Friends Macros Groups
operator_greater_than.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_REV_CORE_OPERATOR_GREATER_THAN_HPP
2 #define STAN_MATH_REV_CORE_OPERATOR_GREATER_THAN_HPP
3 
5 
6 namespace stan {
7  namespace math {
8 
25  inline bool operator>(const var& a, const var& b) {
26  return a.val() > b.val();
27  }
28 
37  inline bool operator>(const var& a, const double b) {
38  return a.val() > b;
39  }
40 
49  inline bool operator>(const double a, const var& b) {
50  return a > b.val();
51  }
52 
53  }
54 }
55 #endif
Independent (input) and dependent (output) variables for gradients.
Definition: var.hpp:32
bool operator>(const fvar< T > &x, const fvar< T > &y)
double val() const
Return the value of this variable.
Definition: var.hpp:234

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