Unlimited polymorphic dummy argument with allocatable attribute449 (7/29/2012 9:49:44 AM) Hi,
I want to write a simple generic realloc subroutine which would accept an a=
llocatable 1d array of any type and "reallocate" it to the given size. My i=
nitial idea would be to do something like
... pawel.biernat(2)
PURE function which depends on values from host or use association158 (7/29/2012 12:48:51 PM) There are restrictions on PURE functions. Apparently, it is allowed if
the result of a PURE function DEPENDS ON (but does not AFFECT) variables
accessed by host or USE association. Such a function is not ... helbig(4873)
Fortran standard question: intrinsic procedure as actual argument1160 (7/29/2012 3:40:25 PM) Hi all,
please consider the following test case:
***************************************
program test
external :: sub
contains
subroutine test1
real :: scale
call sub(scale) ... janus(26)
experience with unit testing in fortran?7128 (7/21/2012 12:11:43 PM) I'm a big advocate of test-driven development and unit testing in general, =
but I've been away from Fortran for a while and haven't used it there. I ha=
ve done a decent amount of TDD in C++ with boost::test... mlohry(37)
member functions without pass748 (7/25/2012 12:43:48 PM) I'm doing my first significant Fortran OOP work, so this is a pretty basic question. Not sure if what I'm after is possible, or if I'm just getting tripped up on the fortran-specific terminology like "type boun... mlohry(37)
Doubts about a FORMAT statement4062 (7/16/2012 10:41:15 AM) Hi, all,
Still on the same code:=20
WRITE (rptunit,99999)=20
99999 format(
.'\par \tab {\f9\fs24\b\cf6',
.' Version 4.11.0.43 May 21 2012 }')
The "rptunit" referred to by the WRITE... deltaquattro(202)
submodules?340 (7/8/2012 2:36:18 PM) A while back I asked about the best strategy for replacing common blocks
with module variables. In a package with about a dozen routines,
various groups of variables are needed by 2, 3, 4, 5, 6 etc routines.... helbig(4873)
FYI, Fortran 2003 openGL binding, documented, examples build for Linux039 (7/25/2012 4:34:06 AM)
I've spend the last week understanding the 2003 opengl binding
work by Anthony Stone, Aleksandar Donev located here
http://www-stone.ch.cam.ac.uk/pub/f03gl/index.xhtml
Which has many openGL examples. N... Nasser