Stan  2.14.0
probability, sampling & optimization
integrate_ode_def.hpp
Go to the documentation of this file.
1 #ifndef STAN_LANG_AST_NODE_INTEGRATE_ODE_DEF_HPP
2 #define STAN_LANG_AST_NODE_INTEGRATE_ODE_DEF_HPP
3 
4 #include <stan/lang/ast.hpp>
5 #include <string>
6 
7 namespace stan {
8  namespace lang {
9 
11 
12  integrate_ode::integrate_ode(const std::string& integration_function_name,
13  const std::string& system_function_name,
14  const expression& y0, const expression& t0,
15  const expression& ts, const expression& theta,
16  const expression& x, const expression& x_int)
17  : integration_function_name_(integration_function_name),
18  system_function_name_(system_function_name),
19  y0_(y0), t0_(t0), ts_(ts), theta_(theta), x_(x), x_int_(x_int) { }
20 
21  }
22 }
23 #endif
expression x_
Real-valued data.
integrate_ode()
Construct a default integrate ODE node.
std::string integration_function_name_
The name of the integrator.
Probability, optimization and sampling library.
expression t0_
Initial time.
expression y0_
Initial state.
expression theta_
Parameters.
expression ts_
Solution times.
std::string system_function_name_
Name of the ODE system.
expression x_int_
Integer-valued data.

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