1
0
Fork 0
mirror of https://github.com/cosmo-sims/monofonIC.git synced 2024-09-19 17:03:45 +02:00

Changed value of nsubvision from 7 to 21 to save memory

This commit is contained in:
Adrian Jenkins 2021-06-02 09:45:43 +01:00
parent f3d9c25e1e
commit f1d628edb6

View file

@ -33,7 +33,7 @@ size_t copy_list[Nbasis];
int pmax = 6;
int nsubdivide = (pmax%2==0)?pmax+1:pmax+2;
int nsubdivide = 21; //(pmax%2==0)?pmax+1:pmax+2;
size_t ncopy = (pmax+1)*(pmax+2)*(pmax+3)/6;