apply clang-format to packages

This commit is contained in:
Axel Kohlmeyer
2021-08-23 21:05:48 -04:00
parent 686f41731f
commit 9a19a814e4
97 changed files with 2029 additions and 2038 deletions

View File

@ -47,9 +47,9 @@ MLIAPDescriptor::~MLIAPDescriptor()
double MLIAPDescriptor::memory_usage()
{
double bytes = (double)nelements*sizeof(double); // radelem
bytes += (double)nelements*sizeof(double); // welem
bytes += (double)nelements*nelements*sizeof(double); // cutsq
double bytes = (double) nelements * sizeof(double); // radelem
bytes += (double) nelements * sizeof(double); // welem
bytes += (double) nelements * nelements * sizeof(double); // cutsq
return bytes;
}