1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! The stepping contract a finite-difference model drives.
//!
//! C++ has no scheme base class: `FiniteDifferenceModel` is a template over
//! the evolver (`finitedifferencemodel.hpp:37`) and reaches `setStep` and
//! `step` through the type parameter. The model of #658 dispatches instead, so
//! the two methods every scheme already carries become a trait here.
use crateQlResult;
use crateArray;
use crateTime;
/// One timestep of an operator-splitting scheme.