LitusSaxonicum
Joined: 23 Aug 2005 Posts: 2424 Location: Yateley, Hants, UK
|
Posted: Sat Oct 11, 2025 12:58 pm Post subject: |
|
|
Sid,
To complement Paul's answer, you can also use the OPTIONS compiler directive to set the default REAL to be DOUBLE PRECISION or REAL*8, and something similar to make all INTEGERs 4 byte:
OPTIONS (INTL, DREAL)
Although REAL*4 is good enough precision in many cases, there are also many cases where it isn't. The option DREAL makes it appear as though the computer only has REAL*8 - unless you declare something specifically to a lower precision.
Eddie |
|