add member variables from PairTableRX
This commit is contained in:
@ -527,7 +527,10 @@ void PairTableRXKokkos<DeviceType>::cleanup_copy() {
|
||||
|
||||
template<class DeviceType>
|
||||
KOKKOS_INLINE_FUNCTION
|
||||
void PairTableRXKokkos<DeviceType>::getMixingWeights(typename DAT::t_float_2d_randomread dvector, int, double &, double &, double &, double &) {
|
||||
void PairTableRXKokkos<DeviceType>::getMixingWeights(
|
||||
typename DAT::t_float_2d_randomread dvector, int id,
|
||||
double &mixWtSite1old, double &mixWtSite2old,
|
||||
double &mixWtSite1, double &mixWtSite2) {
|
||||
double fractionOFAold, fractionOFA;
|
||||
double fractionOld1, fraction1;
|
||||
double fractionOld2, fraction2;
|
||||
|
||||
@ -153,8 +153,15 @@ class PairTableRXKokkos : public PairTable {
|
||||
|
||||
friend void pair_virial_fdotr_compute<PairTableRXKokkos>(PairTableRXKokkos*);
|
||||
|
||||
/* PairTableRX members */
|
||||
|
||||
int nspecies;
|
||||
char *site1, *site2;
|
||||
int isite1, isite2;
|
||||
bool fractionalWeighting;
|
||||
|
||||
KOKKOS_INLINE_FUNCTION
|
||||
void getMixingWeights(typename DAT::t_float_2d_randomread dvector, int, double &, double &, double &, double &);
|
||||
void getMixingWeights(typename DAT::t_float_2d_randomread, int, double &, double &, double &, double &);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user