This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Random Number Generator


Emil Block wrote:

> Does anyone know why a call to RAND with G77 returns a different value
> than a call to RAND with F77 using the same seed?  The computer is a SUN
> Sparc with OS 2.7. The same code is compiled in one case with G77 and in
> the other case with F77.
> 
> G77  rand (iseed)     returns 0.563463211
> F77  rand (iseed)     returns 0.843506
> 
> where iseed = 1375.

It would help if you could figure out how the Sun Fortran run time library
does this.

G77's actually does:

srand(iseed);
return rand();

-- 
Toon Moene - mailto:toon@moene.indiv.nluug.nl - phoneto: +31 346 214290
Saturnushof 14, 3738 XG  Maartensdijk, The Netherlands
Maintainer, GNU Fortran 77: http://gcc.gnu.org/onlinedocs/g77_news.html
Join GNU Fortran 95: http://g95.sourceforge.net/ (under construction)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]