Re: [Rd] getNativeSymbolInfo fails with Fortran symbol.

2008-04-16 Thread Thomas Petzoldt
Prof Brian Ripley wrote: > It's a bug -- unlike is.loaded, getNativeSymbolInfo seems unaware of > Fortran names unless registered. > > Will be fixed in 2.7.0. > > On Wed, 9 Apr 2008, [EMAIL PROTECTED] wrote: > >> >> In the following code routine 'initaquaphy' is defined in Fortran, >> and dynam

Re: [Rd] getNativeSymbolInfo fails with Fortran symbol.

2008-04-10 Thread Prof Brian Ripley
It's a bug -- unlike is.loaded, getNativeSymbolInfo seems unaware of Fortran names unless registered. Will be fixed in 2.7.0. On Wed, 9 Apr 2008, [EMAIL PROTECTED] wrote: > > > In the following code routine 'initaquaphy' is defined in Fortran, > and dynamically loaded into R.: > > test.f: > > >

[Rd] getNativeSymbolInfo fails with Fortran symbol.

2008-04-09 Thread Setzer . Woodrow
In the following code routine 'initaquaphy' is defined in Fortran, and dynamically loaded into R.: test.f: subroutine initaquaphy(odeparms) external odeparms double precision pars(19) common /myparms/pars call odeparms(19, pars) return end $ R CMD