Since 4/29/2012 3:39:07 AM, anlauf has written 8 articles and participated in 24 conversations. anlauf signature: anlauf
anlauf's articles:
Items(8) /1
Commas in FORMATs428 (7/12/2005 9:13:22 PM) comp.lang.fortran Hi experts, maybe I am blind, but skimming through section 10 of the F2003 standard I did not find any rule that prohibits double commas in a FORMAT specification as in print '(i5,,i5)', 1,2 end Some compile... Harald
Scope of "implicit none" and interfaces - rationale?623 (2/22/2005 1:22:13 PM) comp.lang.fortran Hi experts, can somebody briefly explain why it was chosen that interfaces are sort of outside the scope of the program or module they are declared in? An example: program dummy implicit none interface ... Harald
Recursive I/O on internal files in Fortran 95?638 (12/20/2004 11:03:54 AM) comp.lang.fortran Hi, what is the status of recursive I/O on internal files in Fortran 95? I have a book on my desk that is rather unclear on that point and can be read as allowing it in that particular case. I checked the F2k... Harald
Cloning allocatable arrays in F95?332 (12/13/2004 12:19:40 PM) comp.lang.fortran Hi, while trying to clone an allocatable array, I found that ALLOCATE appears to miss a useful feature. It would be nice if the allocate- shape-specification could also be an integer array of Rank 1. Example... Harald
Standards interpretation: interface and intent?1144 (7/20/2004 8:45:03 PM) comp.lang.fortran Hi experts, the following code snippet is a boiled down version of code that appears to compile without warning with several Fortran compilers that I have tested (including Intel's ifort8 with option -stand=f9... Harald
Nesting of internal subroutines1938 (6/4/2004 9:14:33 AM) comp.lang.fortran Hi, it appears that it is not at all allowed in Fortran 95 to nest internal subroutines within a main program, whereas it is allowed in a module. Example: program main call sub1 () contains subroutine sub... Harald
Proper USEing in F529 (2/1/2004 9:04:06 PM) comp.lang.fortran Hi, the example given below compiles with ifc7/ifort7 on Linux, but fails to compile with F with the error message: Error: foo.f90, line 23: Implicit type for PREC detected at =@PREC Error: foo.f90, li... Harald
Intel Fortran 8.0 resource usage during compilation244 (12/17/2003 2:45:56 PM) comp.lang.fortran Hello all, this not about reporting a bug, but did anybody notice that in rare cases the current Intel Fortran compiler (Linux version) uses exceptional amounts of resources (CPU & memory) as compared to versi... Harald
Commas in FORMATs428 (7/12/2005 9:13:22 PM) comp.lang.fortran Hi experts, maybe I am blind, but skimming through section 10 of the F2003 standard I did not find any rule that prohibits double commas in a FORMAT specification as in print '(i5,,i5)', 1,2 end Some compile... anlauf(32)
Trap Overflow - Intel Compilers1893 (7/7/2005 1:27:29 PM) comp.lang.fortran Given code like: program testover real :: a,b a=huge(a) b=a**2 print*, "b=",b end program testover When compiled with the Intel Compiler (any version) with default options, displays: b=INFINITY. Now, can... SkipKnobleLESS1(689)
Backslash problem6107 (2/16/2005 10:46:08 AM) comp.lang.fortran I wrote a program to help me draw curves in Latex, and I got it to write out, into a file that I insert into the LaTeX file, some drawing commands. These include the usual backslashes \ but Fortran refuses to o... britz(86)
Recursive I/O on internal files in Fortran 95?638 (12/20/2004 11:03:54 AM) comp.lang.fortran Hi, what is the status of recursive I/O on internal files in Fortran 95? I have a book on my desk that is rather unclear on that point and can be read as allowing it in that particular case. I checked the F2k... anlauf(32)
g77 and gcc403352 (11/23/2004 10:18:48 PM) comp.lang.fortran I've just installed FreeBSD 5.3 and noticed the gcc40 port. I've been using gcc34 and decided to give gcc40 a try. After I installed gcc40 I looked for the version of g77 that comes with it and couldn't find i... kb6rxe(6)
Standards interpretation: interface and intent?1144 (7/20/2004 8:45:03 PM) comp.lang.fortran Hi experts, the following code snippet is a boiled down version of code that appears to compile without warning with several Fortran compilers that I have tested (including Intel's ifort8 with option -stand=f9... anlauf(32)