Tagged Questions

3
votes
2answers
72 views

Fortran 90 array pass by reference issue

What happens if I allocate a F90 pointer thus: real, pointer :: abc(:) allocate abc (nx*ny*nz) I pass abc to a subroutine, where i redefine it as real arg1(nx,ny,xz) This seems to work fine. ...
2
votes
1answer
71 views

Arrays of pointers

I am trying to implement an array of pointers, so that I can loop over the elements. However I am not sure how to do this correctly: TYPE(domain),POINTER :: d01,d02,d03 ...
1
vote
1answer
1k views

Fortran pointer functions: why does this code's behavior depend on the order of function calls?

Context The toy Fortran code posted below calls two pointer functions. That is, both functions return a pointer. In fact, they're both array pointers. They both attempt to do the same thing, which ...