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

Condense the first two arguments of the linear solver so that we don't need to make a copy #492

Closed K20shores closed 1 month ago

K20shores commented 3 months ago

The first and second argument of the linear solver are the same and we always have to make a copy. In #485 the forcing vector was just passed in for both arguments and things worked. That means we can remove one of the arguments and prevent a copy.

Acceptance