Wizumwalt
Programmer
- Jul 12, 2005
- 10
Hey all,
I'm pretty new to Fortran and trying to make this application use another compiler and I'm getting the following error below.
---
module pot_complex
^
"src/pt_g_run.f90", Line = 1, Column = 10: ERROR: The compiler h
as detected errors in module "POT_COMPLEX". No module information file will be created for this module.
call ep_project(elem,rm,rmp,sing,nearest, &
^
"src/pt_g_run.f90", Line = 1348, Column = 45: ERROR: Illegal ass
ociation of a scalar actual argument with array dummy argument "NEAREST".
--- code snip
subroutine ep_project(elem,rm,rmp,sing,nearest, &
position,proj,ratio)
...
integer :: nearest(1)
Any help much appreciated in understanding what this means. It works w/ an other compiler.
Will
I'm pretty new to Fortran and trying to make this application use another compiler and I'm getting the following error below.
---
module pot_complex
^
"src/pt_g_run.f90", Line = 1, Column = 10: ERROR: The compiler h
as detected errors in module "POT_COMPLEX". No module information file will be created for this module.
call ep_project(elem,rm,rmp,sing,nearest, &
^
"src/pt_g_run.f90", Line = 1348, Column = 45: ERROR: Illegal ass
ociation of a scalar actual argument with array dummy argument "NEAREST".
--- code snip
subroutine ep_project(elem,rm,rmp,sing,nearest, &
position,proj,ratio)
...
integer :: nearest(1)
Any help much appreciated in understanding what this means. It works w/ an other compiler.
Will