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

This commit is contained in:
sjplimp
2010-02-19 23:47:12 +00:00
parent 08fdc5e7e3
commit d423a9f7ef
2 changed files with 3 additions and 1 deletions

View File

@ -16,6 +16,7 @@
#include "string.h"
#include "stdio.h"
#include "universe.h"
#include "version.h"
#include "memory.h"
using namespace LAMMPS_NS;
@ -26,7 +27,7 @@ using namespace LAMMPS_NS;
Universe::Universe(LAMMPS *lmp, MPI_Comm communicator) : Pointers(lmp)
{
version = (char *) "15 Jan 2010";
version = (char *) LAMMPS_VERSION;
uworld = communicator;
MPI_Comm_rank(uworld,&me);