apply clang-format
This commit is contained in:
@ -89,4 +89,3 @@ std::vector<bigint> BoundaryCorrection::gather_jmat(bigint *imat)
|
||||
&recvcounts.front(), &displs.front(), MPI_LMP_BIGINT, world);
|
||||
return jmat;
|
||||
}
|
||||
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
|
||||
@ -57,4 +57,3 @@ class ElectrodeVector : protected Pointers {
|
||||
};
|
||||
|
||||
} // namespace LAMMPS_NS
|
||||
|
||||
|
||||
@ -1153,4 +1153,3 @@ void EwaldElectrode::update_eikr(bool enforce_update)
|
||||
eik_dot_r();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -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();
|
||||
}
|
||||
|
||||
@ -1682,4 +1682,3 @@ void PPPMElectrode::compute_vector_corr(bigint *imat, double *vec)
|
||||
{
|
||||
boundcorr->vector_corr(imat, vec);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user