View previous topic :: View next topic |
Author |
Message |
whgordon
Joined: 11 Apr 2025 Posts: 1
|
Posted: Thu Sep 25, 2025 8:43 pm Post subject: LAPACK SUBROUTINE WILL NOT COMPILE IN PLATO 32 |
|
|
The LAPACK SUBROUTINE DLAMCH will not compile in the latest version of the personal edition of PLATO 32. (It did successfully compile in an earlier version.)
The offending line of code appears to be "SMALL = ONE / HUGE(ZERO)" where all variables are DOUBLE PRECISION.
Please help. _________________ WHG |
|
Back to top |
|
 |
PaulLaidler Site Admin
Joined: 21 Feb 2005 Posts: 8269 Location: Salford, UK
|
|
Back to top |
|
 |
mecej4
Joined: 31 Oct 2006 Posts: 1903
|
Posted: Fri Sep 26, 2025 6:06 pm Post subject: |
|
|
Try this variation:
SMALL = TINY(ZERO) |
|
Back to top |
|
 |
simon
Joined: 05 Jul 2006 Posts: 303
|
|
Back to top |
|
 |
mecej4
Joined: 31 Oct 2006 Posts: 1903
|
Posted: Sat Sep 27, 2025 2:44 pm Post subject: |
|
|
Thanks for the link, Ken. Perhaps the code fragments that we have seen in these threads can be combined into a test program that can be used to check if a new release of the compiler can handle such codes without issues. |
|
Back to top |
|
 |
|