E04WDF - UCL/ECON-CLUSTER GitHub Wiki
-
If ifail=12, you need to increase the NAG internal memory allocation.
- Let
mem0
be the initial internal allocation. - Final allocation equals
mem0
timesrw(501)
. - Solution: increase
rw(501)
as follows:
ifail = -1 call E04WCF(IW,LENIW,RW,LENRW,ifail) rw(501) = 10.0_nag_wp call E04WDF(...)
- Let
-
That increases the allocation by a factor of 10.0
-
To check memory allocation:
ifail = 0 call e04wff('System information yes',iw,rw,ifail)
Back to NAG