git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@5457 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -22,6 +22,7 @@ CommandStyle(write_restart,WriteRestart)
|
||||
|
||||
#include "stdio.h"
|
||||
#include "pointers.h"
|
||||
#include "lmptype.h"
|
||||
|
||||
namespace LAMMPS_NS {
|
||||
|
||||
@ -34,7 +35,7 @@ class WriteRestart : protected Pointers {
|
||||
private:
|
||||
int me,nprocs;
|
||||
FILE *fp;
|
||||
double natoms; // natoms (sum of nlocal) to write into file
|
||||
bigint natoms; // natoms (sum of nlocal) to write into file
|
||||
|
||||
void header();
|
||||
void type_arrays();
|
||||
@ -43,6 +44,7 @@ class WriteRestart : protected Pointers {
|
||||
void write_int(int, int);
|
||||
void write_double(int, double);
|
||||
void write_char(int, char *);
|
||||
void write_bigint(int, bigint);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user