Updating to master

This commit is contained in:
Joel Clemmer
2021-02-05 17:01:32 -07:00
1424 changed files with 53674 additions and 56307 deletions

View File

@ -343,7 +343,7 @@ double NBinMulti::memory_usage()
{
double bytes = 0;
for (int m = 0; m < maxcollections; m++)
bytes += maxbins_multi[m]*sizeof(int);
bytes += 2*maxatom*sizeof(int);
bytes += (double)maxbins_multi[m]*sizeof(int);
bytes += (double)2*maxatom*sizeof(int);
return bytes;
}