~ubuntu-branches/debian/sid/lammps/sid

« back to all changes in this revision

Viewing changes to src/lammps.h

  • Committer: Package Import Robot
  • Author(s): Anton Gladky
  • Date: 2015-04-29 23:44:49 UTC
  • mfrom: (5.1.3 experimental)
  • Revision ID: package-import@ubuntu.com-20150429234449-mbhy9utku6hp6oq8
Tags: 0~20150313.gitfa668e1-1
Upload into unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
  FILE *screen;                  // screen output
43
43
  FILE *logfile;                 // logfile
44
44
 
45
 
  char *suffix;                  // suffix to add to input script style names
46
 
  int suffix_enable;             // 1 if suffix enabled, 0 if disabled
 
45
  char *suffix,*suffix2;         // suffixes to add to input script style names
 
46
  int suffix_enable;             // 1 if suffixes are enabled, 0 if disabled
47
47
  int cite_enable;               // 1 if generating log.cite, 0 if disabled
48
48
 
49
49
  class Cuda *cuda;              // CUDA accelerator class
54
54
  LAMMPS(int, char **, MPI_Comm);
55
55
  ~LAMMPS();
56
56
  void create();
57
 
  void post_create();
 
57
  void post_create(int, int *, int *, char **);
58
58
  void init();
59
59
  void destroy();
60
60