Stan Math Library  2.12.0
reverse mode automatic differentiation
value_of.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_SCAL_FUN_VALUE_OF_HPP
2 #define STAN_MATH_PRIM_SCAL_FUN_VALUE_OF_HPP
3 
4 namespace stan {
5  namespace math {
6 
22  template <typename T>
23  inline double value_of(const T x) {
24  return static_cast<double>(x);
25  }
26 
38  template <>
39  inline double value_of<double>(const double x) {
40  return x;
41  }
42 
43  }
44 }
45 #endif
T value_of(const fvar< T > &v)
Return the value of the specified variable.
Definition: value_of.hpp:16
double value_of< double >(const double x)
Return the specified argument.
Definition: value_of.hpp:39

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