Win10, Stata 17.0 MP6, survsim 4.0.9
Problem
If survsim throws an unexpected error and exits out, it doesn't tidy up Mata memory. If you try to rerun the command after an unexpected exit, you get:
. hf1() already exists
(4 lines skipped)
r(3000);
Checking Mata memory confirms the issue:
. mata mata desc
# bytes type name and extent
-------------------------------------------------------------------------------
240 transmorphic matrix hf1()
256 transmorphic matrix hf2()
400 transmorphic matrix totalhf1()
408 transmorphic matrix totalhf3()
16 pointer colvector Phfs[2]
32 pointer colvector Ptotalhfs[4]
-------------------------------------------------------------------------------
MWE
Run the MWE from #1, then without clearing session memory: keep grp, then recode grp (.=2), then try rerunning #1's survsim call.
Win10, Stata 17.0 MP6,
survsim4.0.9Problem
If
survsimthrows an unexpected error and exits out, it doesn't tidy up Mata memory. If you try to rerun the command after an unexpected exit, you get:Checking Mata memory confirms the issue:
MWE
Run the MWE from #1, then without clearing session memory:
keep grp, thenrecode grp (.=2), then try rerunning #1'ssurvsimcall.