Something went wrong while setting issue due date.
faMatrix residual changes source?
by inspection (noticed while examining #1834 (closed)). The faMatrix::residual has this code:
tmp<Field<Type>> tres(source_);
Field<Type>& res = tres().ref();
which implies that calculating the residual affects the source vector.
Probably should be
tmp<Field<Type>> tres(new Field<Type>>(source_);
Field<Type>& res = tres().ref();