git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@9409 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp
2013-02-08 17:12:58 +00:00
parent 01311d340a
commit d41265166e
4 changed files with 48 additions and 12 deletions

View File

@ -40,6 +40,7 @@
#include "group.h"
#include "output.h"
#include "accelerator_cuda.h"
#include "accelerator_omp.h"
#include "timer.h"
#include "memory.h"
#include "error.h"
@ -457,7 +458,11 @@ void LAMMPS::create()
else comm = new Comm(this);
if (cuda) domain = new DomainCuda(this);
#ifdef LMP_USER_OMP
else domain = new DomainOMP(this);
#else
else domain = new Domain(this);
#endif
group = new Group(this);
force = new Force(this); // must be after group, to create temperature