search for: gtest_

Displaying 2 results from an estimated 2 matches for "gtest_".

Did you mean: gtest
2003 Apr 03
1
Calling Fortran routines
...call the routine is: .Fortran("GTEST",a=as.integer(1),b=as.integer(3),c=as.integer(-10),d=as.inte ger(0),e=as.integer(0)) The Fortran routine itself, is just a dummy routine, created to try and find out why a more complex routine was causing R to crash, and consists of: SUBROUTINE GTEST_(A,B,C,D,E) INTEGER A,B,C,D,E !DEC$ ATTRIBUTES DLLEXPORT :: GTEST_ !DEC$ ATTRIBUTES ALIAS:'GTEST_' :: GTEST_ END Where the !DEC commands are needed in Visual Fortran to create the DLL (I think !, these were copied from an example file on the compaq web page). The strange thing a...
2003 Apr 04
0
R crashes on calling a Fortran routine (PR#2728)
...o call the routine is: .Fortran("GTEST",a=as.integer(1),b=as.integer(3),c=as.integer(-10),d=as.integer(0),e=as.integer(0)) The Fortran routine itself, is just a dummy routine, created to try and find out why a more complex routine was causing R to crash, and consists of: SUBROUTINE GTEST_(A,B,C,D,E) INTEGER A,B,C,D,E !DEC$ ATTRIBUTES DLLEXPORT :: GTEST_ !DEC$ ATTRIBUTES ALIAS:'GTEST_' :: GTEST_ END Where the !DEC commands are needed in Visual Fortran to create the DLL (I think !, these were copied from an example file on the compaq web page). The strange thing a...