Stan  2.5.0
probability, sampling & optimization
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
operator_less_than.hpp
Go to the documentation of this file.
1 #ifndef STAN__AGRAD__REV__OPERATORS__OPERATOR_LESS_THAN_HPP
2 #define STAN__AGRAD__REV__OPERATORS__OPERATOR_LESS_THAN_HPP
3 
4 #include <stan/agrad/rev/var.hpp>
5 
6 namespace stan {
7  namespace agrad {
8 
24  inline bool operator<(const var& a, const var& b) {
25  return a.val() < b.val();
26  }
27 
36  inline bool operator<(const var& a, const double b) {
37  return a.val() < b;
38  }
39 
48  inline bool operator<(const double a, const var& b) {
49  return a < b.val();
50  }
51 
52  }
53 }
54 #endif
double val() const
Return the value of this variable.
Definition: var.hpp:209
bool operator<(const fvar< T > &x, double y)
Independent (input) and dependent (output) variables for gradients.
Definition: var.hpp:27

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