我正在尝试编写一个具有两个参数的子程序(用于最小化):
x
任意长度的数组- 一个函数
f
,它接受一个该长度的数组并返回一个标量
示例模块:
module foo
contains
subroutine solve(x, f)
real, dimension(:), intent(inout) :: x
interface
real pure function f(y)
import x
real, dimension(size(x)), intent(in) :: y
end function
end interface
print *, x
print *, f(x)
end subroutine
end module
和测试程序:
use foo
real, dimension(2) :: x = [1.0, 2.0]
call solve(x, g)
contains
real pure function g(y)
real, dimension(2), intent(in) :: y
g = sum(y)
end function
end
gfortran 失败:
call solve(x, g)
1
Error: Interface mismatch in dummy procedure 'f' at (1): Shape mismatch in dimension 1 of argument 'y'
如果我改变size(x) => 2
,那么它编译(并运行)很好。如果我改变它也可以正常工作 : => 2
。但是这些解决方案都没有让我得到我想要的。
关于如何实现这一目标的任何想法?