Crate cvode_wrap[][src]

Expand description

A wrapper around cvode and cvodes from the sundials tool suite.

Users should be mostly interested in SolverSensi and SolverNoSensi.

Structs

NVectorSerial

A sundials N_Vector_Serial.

NVectorSerialHeapAllocated

An owning pointer to a sundials NVectorSerial on the heap.

SolverNoSensi

The ODE solver without sensitivities.

SolverSensi

The ODE solver with sensitivities.

Enums

AbsTolerance

An enum representing the choice between a scalar or vector absolute tolerance

Error

The error type for this crate

LinearMultistepMethod

An integration method.

RhsResult

A return type for the right-hand-side rust function.

SensiAbsTolerance

An enum representing the choice between scalars or vectors absolute tolerances for sensitivities.

StepKind

Type of integration step

Type Definitions

Realtype

The floatting-point type sundials was compiled with

Result

A short-hand for std::result::Result<T, crate::Error>