NCAR / micm

A model-independent chemistry module for atmosphere models
https://ncar.github.io/micm/
Apache License 2.0
6 stars 4 forks source link

Adapt Backward Euler to work with vectorizable matrix types #500

Open K20shores opened 2 months ago

K20shores commented 2 months ago

Backward Euler currently uses iterators for the underlying std::vector of matrix types to loop over matrix elements. This works with the standard matrix type, but for vectorizable matrices will include buffer elements that should not be operated on.

Acceptance Criteria

Ideas