git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@9459 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -87,7 +87,7 @@ ComputeTempCuda::~ComputeTempCuda()
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void ComputeTempCuda::init()
|
||||
void ComputeTempCuda::setup()
|
||||
{
|
||||
fix_dof = 0;
|
||||
for (int i = 0; i < modify->nfix; i++)
|
||||
|
||||
@ -52,7 +52,8 @@ class ComputeTempCuda : public Compute {
|
||||
public:
|
||||
ComputeTempCuda(class LAMMPS *, int, char **);
|
||||
~ComputeTempCuda();
|
||||
void init();
|
||||
void init() {}
|
||||
void setup();
|
||||
double compute_scalar();
|
||||
void compute_vector();
|
||||
|
||||
|
||||
@ -101,7 +101,7 @@ ComputeTempPartialCuda::~ComputeTempPartialCuda()
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
void ComputeTempPartialCuda::init()
|
||||
void ComputeTempPartialCuda::setup()
|
||||
{
|
||||
fix_dof = 0;
|
||||
for (int i = 0; i < modify->nfix; i++)
|
||||
|
||||
@ -52,7 +52,8 @@ class ComputeTempPartialCuda : public Compute {
|
||||
public:
|
||||
ComputeTempPartialCuda(class LAMMPS *, int, char **);
|
||||
~ComputeTempPartialCuda();
|
||||
void init();
|
||||
void init() {}
|
||||
void setup();
|
||||
double compute_scalar();
|
||||
void compute_vector();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user