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

@ -650,8 +650,8 @@ void ComputePropertyLocal::reallocate(int n)
double ComputePropertyLocal::memory_usage()
{
double bytes = nmax*nvalues * sizeof(double);
bytes += nmax*2 * sizeof(int);
double bytes = (double)nmax*nvalues * sizeof(double);
bytes += (double)nmax*2 * sizeof(int);
return bytes;
}