|
Janus 2.0.0
High-performance C++20 dual-mode numerical framework
|
Result structure for ODE solvers. More...
#include <Integrate.hpp>
Public Attributes | |
| JanusVector< Scalar > | t |
| Time points where solution was computed. | |
| JanusMatrix< Scalar > | y |
| Solution values at each time point (each column is a state at time t[i]). | |
| bool | success = true |
| Whether integration was successful. | |
| std::string | message = "" |
| Descriptive message. | |
| int | status = 0 |
| Status code (0 = success). | |
Result structure for ODE solvers.
Contains time points, solution values, and solver metadata.
| Scalar | numeric or symbolic scalar type |
| std::string janus::OdeResult< Scalar >::message = "" |
Descriptive message.
| int janus::OdeResult< Scalar >::status = 0 |
Status code (0 = success).
| bool janus::OdeResult< Scalar >::success = true |
Whether integration was successful.
| JanusVector<Scalar> janus::OdeResult< Scalar >::t |
Time points where solution was computed.
| JanusMatrix<Scalar> janus::OdeResult< Scalar >::y |
Solution values at each time point (each column is a state at time t[i]).