apply clang-format

This commit is contained in:
Axel Kohlmeyer
2022-04-09 07:16:22 -04:00
parent 6dea9fa10c
commit 7673eda947
6 changed files with 2 additions and 7 deletions

View File

@ -89,4 +89,3 @@ std::vector<bigint> BoundaryCorrection::gather_jmat(bigint *imat)
&recvcounts.front(), &displs.front(), MPI_LMP_BIGINT, world);
return jmat;
}

View File

@ -204,4 +204,3 @@ double ElectrodeVector::calc_erfc(double x)
double t = 1.0 / (1.0 + EWALD_P * x);
return t * (A1 + t * (A2 + t * (A3 + t * (A4 + t * A5)))) * expm2;
}

View File

@ -57,4 +57,3 @@ class ElectrodeVector : protected Pointers {
};
} // namespace LAMMPS_NS

View File

@ -1153,4 +1153,3 @@ void EwaldElectrode::update_eikr(bool enforce_update)
eik_dot_r();
}
}

View File

@ -1157,7 +1157,7 @@ void FixElectrodeConp::request_etypes_neighlists()
if (!(read_inv || read_mat)) {
auto matReq = neighbor->add_request(this, NeighConst::REQ_OCCASIONAL);
matReq->set_skip(iskip_mat,ijskip_mat);
matReq->set_skip(iskip_mat, ijskip_mat);
if (intelflag) matReq->enable_intel();
} else {
delete[] iskip_mat;
@ -1165,6 +1165,6 @@ void FixElectrodeConp::request_etypes_neighlists()
}
auto vecReq = neighbor->add_request(this);
vecReq->set_skip(iskip_vec,ijskip_vec);
vecReq->set_skip(iskip_vec, ijskip_vec);
if (intelflag) vecReq->enable_intel();
}

View File

@ -1682,4 +1682,3 @@ void PPPMElectrode::compute_vector_corr(bigint *imat, double *vec)
{
boundcorr->vector_corr(imat, vec);
}