revert permission change and replace 'b/c' with 'because'

This commit is contained in:
Axel Kohlmeyer
2020-08-10 11:37:52 -04:00
parent d0720794a6
commit e3beec8b95
19 changed files with 47 additions and 47 deletions

4
src/MISC/fix_gld.cpp Executable file → Normal file
View File

@ -547,7 +547,7 @@ int FixGLD::unpack_exchange(int nlocal, double *buf)
int FixGLD::pack_restart(int i, double *buf)
{
int m = 0;
// pack buf[0] this way b/c other fixes unpack it
// pack buf[0] this way because other fixes unpack it
buf[m++] = 3*prony_terms + 1;
for (int k = 0; k < 3*prony_terms; k=k+3)
{
@ -567,7 +567,7 @@ void FixGLD::unpack_restart(int nlocal, int nth)
double **extra = atom->extra;
// skip to the nth set of extended variables
// unpack the Nth first values this way b/c other fixes pack them
// unpack the Nth first values this way because other fixes pack them
int m = 0;
for (int i = 0; i< nth; i++) m += static_cast<int> (extra[nlocal][m]);