Update hdf5/ndarray

This commit is contained in:
2021-10-23 19:35:37 +00:00
parent 86275d2c2e
commit d16b274fe0
12 changed files with 41 additions and 42 deletions

View File

@@ -11,9 +11,6 @@ struct Field(Array1<Float>);
impl integrate::Integrable for Field {
type State = Array1<Float>;
type Diff = Array1<Float>;
fn assign(s: &mut Self::State, o: &Self::State) {
s.assign(o)
}
fn scaled_add(s: &mut Self::State, o: &Self::Diff, scale: Float) {
s.scaled_add(scale, o)
}