Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to use a procedure pointer (new feature in Fortran 2003) to point to an elemental function but it does not work. I really need the function to be ELEMENTAL and need a pointer to it. Is it truly impossible to point to an elemental function in Fortran?

    module elemfunc
    implicit none

    contains
        elemental function fun111(x) result(y)
        real*8, intent(in) :: x
        real*8 :: y 

            y = x**2+1

        end function fun111
    end module elemfunc


    program testptr
    use elemfunc
    implicit none

      interface
        elemental function func (z)
        real*8 :: func
        real*8, intent (in) :: z
        end function func
      end interface

        procedure (func), pointer :: ptr
        ptr => fun111

        print *, ptr( (/1.0d0,2.0d0/) )

    end program testptr

Error message:

main.f90:12.7:ptr=>fun111
                     1
Nonintrinstic elemental procedure pointer 'func111' is invalid in procedure pointer assignment at (1)
share|improve this question
1  
FWIW your code compiles and executes (apparently) correctly for me. I'm using Intel Fortran 13.1.0.149. Even if I crank warnings and syntax-checking up to 11 the compiler issues no complaints. I can't say that I am certain that your code is standard-compliant, but I can't see that it isn't either. – High Performance Mark Mar 5 at 13:41
Amazing!I'm using gfortran 4.7(not for sure...). Perhaps I should update my gfortran??? – booksee Mar 5 at 13:52
@High Performance Mark see NewFeatureFortran2003, seach 'elemental', the first matching result says that elemental INTERFACE is not permitted, but I dont know whether it is same with elemental FUNCTIONS... – booksee Mar 5 at 14:01
1  
Newest gfortran 4.8 produces the same. – Vladimir F Mar 5 at 14:29

1 Answer

up vote 2 down vote accepted

In paragraph 7.4.2 Pointer Assignment of the fortran 2003 standard it is explicitly stated that this is not allowed:

C728 (R742) The proc-target shall not be a nonintrinsic elemental procedure

(This constraint is still there in the fortran 2008 standard, so it hasn't been relaxed.)

share|improve this answer
Yes, it is the same constraint the OP quotes in his comment. – Vladimir F Mar 5 at 14:31
Naughty Intel Fortran I say ! – High Performance Mark Mar 5 at 14:34
@VladimirF: Ah, I hadn't looked at that. So it appears the OP already knew the answer to his question. – eriktous Mar 5 at 14:35
Thank you all. The constraint really makes me sad...!_!....I have to rewrite my codes all again without using elemental functions – booksee Mar 5 at 15:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.