Change intent in res_interface to match previous commit.

This commit is contained in:
Paul Romano 2013-10-09 21:31:13 -04:00
parent 241b6e567c
commit f7aacaf0a7

View file

@ -56,8 +56,8 @@ module solver_interface
abstract interface
subroutine res_interface(x, res)
import :: Vector
type(Vector), intent(in) :: x ! solution vector
type(Vector), intent(out) :: res ! residual vector
type(Vector), intent(in) :: x ! solution vector
type(Vector), intent(inout) :: res ! residual vector
end subroutine res_interface
subroutine jac_interface(x)