conspire 0.6.0

The Rust interface to conspire.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Implicit, single-stage, second-order, fixed-step, Runge-Kutta method.[^1]

```math
\frac{dy}{dt} = f(t, y)
```
```math
t_{n+1} = t_n + h
```
```math
k_1 = f(t_n + \tfrac{1}{2} h, \tfrac{1}{2} y_n + \tfrac{1}{2} y_{n+1})
```
```math
y_{n+1} = y_n + hk_1
```

[^1]: Also known as the implicit midpoint method.