Since 4/2/2012 5:35:32 AM, kargls has written 8 articles and participated in 346 conversations. kargls signature: kargls
kargls's articles:
Items(8) /1
allocatable components and TRANSFER behavior2335 (4/22/2011 4:53:03 PM) comp.lang.fortran Is the following code conforming (where the LOC function is a vendor supplied intrinsic subprogram)? In particular, in the second TRANSFER is TRANSFER suppose to automagically allocate the allocatable componen... steve
MOLD and SOURCE in an allocate statement.0270 (6/13/2010 6:51:55 PM) comp.lang.fortran F2008 has added MOLD to the possible alloc-opt entities allowed in an
allocate statement.
"R627 alloc-opt is ERRMSG = errmsg-variable
or MOLD = source-expr
... steve
Fortran in newly released JASON report0152 (4/24/2010 10:14:20 PM) comp.lang.fortran
http://hardware.slashdot.org/story/10/04/24/2017222/Looking-Back-at-1984-Report-On-Radical-Computing
Get the pdf file and start scanning, e.g., on page 54:
Backus (1978), the father of FORTRAN, has' ... steve
Allocattable and namelist object425 (2/14/2010 8:50:20 PM) comp.lang.fortran All, Someone has reported a bug against gfortran that suggests that following code is legal Fortran 2003. PROGRAM MAIN REAL, DIMENSION(:), ALLOCATABLE :: TAB NAMELIST/TOTO/TAB END PROGRAM MAIN Gfortr... steve
Missing 2008 GFortran Status Report347 (12/13/2009 11:09:54 PM) comp.lang.fortran All, On IRC today, discussion for the 2009 GFortran Status Report was conducted. It was noted that the 2008 report was missing, and indeed, I never posted the reported after I completed it. So, in the spirit... steve
allocation's source tag and derived types736 (9/23/2009 8:23:54 PM) comp.lang.fortran Is the following code F2003 conforming? More, importantly, do the comments reflect the expected output for the print statements? program a implicit none type b integer :: c = 42 ! default initi... steve
deferred type parameters, again453 (7/1/2009 7:16:34 PM) comp.lang.fortran In developing a testcase for the gfortran testsuite, I stumbled upon the following code: program test character(len=:) fmt allocate(character(len=:) :: fmt) end program test This certainly looks ... steve
Use of deferred type parameter and ALLOCATE1034 (6/7/2009 6:30:43 PM) comp.lang.fortran All, I've been working on an implementation of the Fortran 2003 ALLOCATE statement for inclusion in gfortran. This adds both the typespec and SOURCE= features. To complete the implementation, it appears that... kargls
Compiler bug or illegal?545 (7/13/2011 4:22:07 PM) comp.lang.fortran In the following program an internal subroutine is used to re-size an allocatable array. The internal routine takes an argument. When it is called, this argument is an entry of the array that it actually re-siz... Aris
iso_c_binding error (call C from fortran)26110 (7/14/2011 2:41:54 PM) comp.lang.fortran I got some error message for the below code: # testc.c ----------------------------------------------------------------------------------------------------------- 1 #include 2 #include 3 4 void testc... wonjunchoi001(29)
Strange segmentation fault752 (7/21/2011 6:13:11 PM) comp.lang.fortran I have a large Fortran 95/2003 code that another user is having problems with, so I inserted a print statement to find out what was happening. I received the print out I needed, only to have a segmentation fau... wmcornette(2)
custom assignment for tr15581 derived type1149 (9/16/2011 1:15:49 PM) comp.lang.fortran Hi, All, I am not quite sure what is hidden behind a custom assignment according the fortran sematics. Is this x = array_expression translated directly into call assign_t_1(x, array_expression) or should... alexei.matveev(38)
file and dynamic array as parameter in subroutine #2147 (1/7/2012 12:53:25 AM) comp.lang.fortran Hello again. Thanks for your replies. I was working in my routine. I used a function instead. This is my code modified. Looks that it works ok. However when I compile: > gfortran -c main.f90 load_file.f90 The ... medina.rc(51)
Seeding fails in GNU Fortran ?2739 (4/4/2012 3:25:51 PM) comp.lang.fortran Hi all.
Is anybody else experiencing that seeding in gfortran does not affect the
series of the random numbers generated?
I'm experiencing it both with GNU Fortran (GCC) 4.6.3 20120127 (prerelease),
w... hera2011ess(10)