Merge pull request #881 from akohlmey/cplus-plus-style-includes

Replace C-style include files with their C++ equivalents
This commit is contained in:
Steve Plimpton 2018-05-03 11:25:51 -06:00 committed by GitHub
commit 654fec164d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1309 changed files with 3075 additions and 3098 deletions

View File

@ -16,7 +16,7 @@
------------------------------------------------------------------------- */
#include <mpi.h>
#include <string.h>
#include <cstring>
#include "compute_temp_asphere.h"
#include "math_extra.h"
#include "atom.h"

View File

@ -15,9 +15,9 @@
Contributing author: Mike Brown (SNL)
------------------------------------------------------------------------- */
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include "math_extra.h"
#include "fix_nh_asphere.h"
#include "atom.h"

View File

@ -11,7 +11,7 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include <string.h>
#include <cstring>
#include "fix_nph_asphere.h"
#include "modify.h"
#include "error.h"

View File

@ -11,7 +11,7 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include <string.h>
#include <cstring>
#include "fix_npt_asphere.h"
#include "modify.h"
#include "error.h"

View File

@ -15,9 +15,9 @@
Contributing author: Mike Brown (SNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstring>
#include "fix_nve_asphere.h"
#include "math_extra.h"
#include "atom.h"

View File

@ -11,9 +11,9 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include <math.h>
#include <string.h>
#include <stdlib.h>
#include <cmath>
#include <cstring>
#include <cstdlib>
#include "fix_nve_asphere_noforce.h"
#include "math_extra.h"
#include "atom.h"

View File

@ -11,9 +11,9 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstring>
#include "fix_nve_line.h"
#include "atom.h"
#include "atom_vec_line.h"

View File

@ -11,9 +11,9 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstring>
#include "fix_nve_tri.h"
#include "math_extra.h"
#include "atom.h"

View File

@ -11,7 +11,7 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include <string.h>
#include <cstring>
#include "fix_nvt_asphere.h"
#include "group.h"
#include "modify.h"

View File

@ -15,10 +15,10 @@
Contributing author: Mike Brown (SNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_gayberne.h"
#include "math_extra.h"
#include "atom.h"

View File

@ -11,10 +11,10 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_line_lj.h"
#include "atom.h"
#include "atom_vec_line.h"

View File

@ -15,10 +15,10 @@
Contributing author: Mike Brown (SNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_resquared.h"
#include "math_extra.h"
#include "atom.h"

View File

@ -11,10 +11,10 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_tri_lj.h"
#include "math_extra.h"
#include "atom.h"

View File

@ -11,7 +11,7 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include <stdlib.h>
#include <cstdlib>
#include "body_nparticle.h"
#include "math_extra.h"
#include "atom_vec_body.h"

View File

@ -11,8 +11,8 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include <math.h>
#include <string.h>
#include <cmath>
#include <cstring>
#include "compute_body_local.h"
#include "atom.h"
#include "atom_vec_body.h"

View File

@ -17,7 +17,7 @@
------------------------------------------------------------------------- */
#include <mpi.h>
#include <string.h>
#include <cstring>
#include "compute_temp_body.h"
#include "math_extra.h"
#include "atom.h"

View File

@ -16,9 +16,9 @@
based on FixNHAsphere
------------------------------------------------------------------------- */
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include "math_extra.h"
#include "fix_nh_body.h"
#include "atom.h"

View File

@ -15,7 +15,7 @@
Contributing author: Trung Dac Nguyen (ndactrung@gmail.com)
------------------------------------------------------------------------- */
#include <string.h>
#include <cstring>
#include "fix_nph_body.h"
#include "modify.h"
#include "error.h"

View File

@ -15,7 +15,7 @@
Contributing author: Trung Dac Nguyen (ndactrung@gmail.com)
------------------------------------------------------------------------- */
#include <string.h>
#include <cstring>
#include "fix_npt_body.h"
#include "modify.h"
#include "error.h"

View File

@ -11,9 +11,9 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstring>
#include "fix_nve_body.h"
#include "math_extra.h"
#include "atom.h"

View File

@ -15,7 +15,7 @@
Contributing author: Trung Dac Nguyen (ndactrung@gmail.com)
------------------------------------------------------------------------- */
#include <string.h>
#include <cstring>
#include "fix_nvt_body.h"
#include "group.h"
#include "modify.h"

View File

@ -11,10 +11,10 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_body.h"
#include "math_extra.h"
#include "atom.h"

View File

@ -15,9 +15,9 @@
Contributing author: Eric Simon (Cray)
------------------------------------------------------------------------- */
#include <math.h>
#include <string.h>
#include <stdlib.h>
#include <cmath>
#include <cstring>
#include <cstdlib>
#include "angle_class2.h"
#include "atom.h"
#include "neighbor.h"

View File

@ -20,7 +20,7 @@ AngleStyle(class2,AngleClass2)
#ifndef LMP_ANGLE_CLASS2_H
#define LMP_ANGLE_CLASS2_H
#include <stdio.h>
#include <cstdio>
#include "angle.h"
namespace LAMMPS_NS {

View File

@ -15,8 +15,8 @@
Contributing author: Eric Simon (Cray)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdlib.h>
#include <cmath>
#include <cstdlib>
#include "bond_class2.h"
#include "atom.h"
#include "neighbor.h"

View File

@ -20,7 +20,7 @@ BondStyle(class2,BondClass2)
#ifndef LMP_BOND_CLASS2_H
#define LMP_BOND_CLASS2_H
#include <stdio.h>
#include <cstdio>
#include "bond.h"
namespace LAMMPS_NS {

View File

@ -15,9 +15,9 @@
Contributing author: Eric Simon (Cray)
------------------------------------------------------------------------- */
#include <math.h>
#include <string.h>
#include <stdlib.h>
#include <cmath>
#include <cstring>
#include <cstdlib>
#include "dihedral_class2.h"
#include "atom.h"
#include "neighbor.h"

View File

@ -20,7 +20,7 @@ DihedralStyle(class2,DihedralClass2)
#ifndef LMP_DIHEDRAL_CLASS2_H
#define LMP_DIHEDRAL_CLASS2_H
#include <stdio.h>
#include <cstdio>
#include "dihedral.h"
namespace LAMMPS_NS {

View File

@ -15,9 +15,9 @@
Contributing author: Eric Simon (Cray)
------------------------------------------------------------------------- */
#include <math.h>
#include <string.h>
#include <stdlib.h>
#include <cmath>
#include <cstring>
#include <cstdlib>
#include "improper_class2.h"
#include "atom.h"
#include "neighbor.h"

View File

@ -20,7 +20,7 @@ ImproperStyle(class2,ImproperClass2)
#ifndef LMP_IMPROPER_CLASS2_H
#define LMP_IMPROPER_CLASS2_H
#include <stdio.h>
#include <cstdio>
#include "improper.h"
namespace LAMMPS_NS {

View File

@ -11,9 +11,9 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include "pair_lj_class2.h"
#include "atom.h"
#include "comm.h"

View File

@ -11,9 +11,9 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include "pair_lj_class2_coul_cut.h"
#include "atom.h"
#include "comm.h"

View File

@ -11,10 +11,10 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lj_class2_coul_long.h"
#include "atom.h"
#include "comm.h"

View File

@ -15,8 +15,8 @@
Contributing authors: Jeremy Lechman (SNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <string.h>
#include <cmath>
#include <cstring>
#include "fix_wall_colloid.h"
#include "atom.h"
#include "atom_vec.h"

View File

@ -15,10 +15,10 @@
Contributing authors: Amit Kumar and Michael Bybee (UIUC)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_brownian.h"
#include "atom.h"
#include "atom_vec.h"

View File

@ -16,10 +16,10 @@
Dave Heine (Corning), polydispersity
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_brownian_poly.h"
#include "atom.h"
#include "atom_vec.h"

View File

@ -15,10 +15,10 @@
Contributing author: Pieter in 't Veld (SNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_colloid.h"
#include "atom.h"
#include "comm.h"

View File

@ -16,10 +16,10 @@
Amit Kumar and Michael Bybee (UIUC)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lubricate.h"
#include "atom.h"
#include "atom_vec.h"

View File

@ -16,10 +16,10 @@
------------------------------------------------------------------------- */
#include <mpi.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lubricateU.h"
#include "atom.h"
#include "atom_vec.h"

View File

@ -18,10 +18,10 @@
------------------------------------------------------------------------- */
#include <mpi.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lubricateU_poly.h"
#include "atom.h"
#include "atom_vec.h"

View File

@ -17,10 +17,10 @@
Dave Heine (Corning), polydispersity
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lubricate_poly.h"
#include "atom.h"
#include "atom_vec.h"

View File

@ -15,8 +15,8 @@
Contributing authors: Randy Schunk (Sandia)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdlib.h>
#include <cmath>
#include <cstdlib>
#include "pair_yukawa_colloid.h"
#include "atom.h"
#include "atom_vec.h"

View File

@ -16,7 +16,7 @@
#include "error.h"
#include "update.h"
#include <string.h>
#include <cstring>
using namespace LAMMPS_NS;

View File

@ -17,7 +17,7 @@
#include "error.h"
#include "update.h"
#include <string.h>
#include <cstring>
using namespace LAMMPS_NS;
#define UNWRAPEXPAND 10.0

View File

@ -16,7 +16,7 @@
#include "error.h"
#include "update.h"
#include <string.h>
#include <cstring>
using namespace LAMMPS_NS;

View File

@ -16,7 +16,7 @@
#include "error.h"
#include "update.h"
#include <string.h>
#include <cstring>
using namespace LAMMPS_NS;

View File

@ -17,9 +17,9 @@
------------------------------------------------------------------------- */
#include <mpi.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include "compute_temp_cs.h"
#include "atom.h"
#include "atom_vec.h"

View File

@ -16,10 +16,10 @@
References: Fennell and Gezelter, JCP 124, 234104 (2006)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_born_coul_dsf_cs.h"
#include "atom.h"
#include "comm.h"

View File

@ -15,10 +15,10 @@
Contributing author: Hendrik Heenen (hendrik.heenen@mytum.de)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_born_coul_long_cs.h"
#include "atom.h"
#include "comm.h"

View File

@ -12,10 +12,10 @@
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_born_coul_wolf_cs.h"
#include "atom.h"
#include "comm.h"

View File

@ -15,10 +15,10 @@
Contributing author: Hendrik Heenen (hendrik.heenen@mytum.de)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_buck_coul_long_cs.h"
#include "atom.h"
#include "comm.h"

View File

@ -15,10 +15,10 @@
Contributing author: Hendrik Heenen (hendrik.heenen@mytum.de)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_coul_long_cs.h"
#include "atom.h"
#include "comm.h"

View File

@ -12,10 +12,10 @@
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_coul_wolf_cs.h"
#include "atom.h"
#include "comm.h"

View File

@ -15,10 +15,10 @@
Contributing author: Hendrik Heenen (hendrik.heenen@mytum.de)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lj_cut_coul_long_cs.h"
#include "atom.h"
#include "comm.h"

View File

@ -11,8 +11,8 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include <math.h>
#include <stdlib.h>
#include <cmath>
#include <cstdlib>
#include "atom_vec_dipole.h"
#include "atom.h"
#include "comm.h"

View File

@ -11,8 +11,9 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include <math.h>
#include <stdlib.h>
#include <cmath>
#include <cstdlib>
#include <cstring>
#include "pair_lj_cut_dipole_cut.h"
#include "atom.h"
#include "neighbor.h"
@ -22,7 +23,6 @@
#include "memory.h"
#include "error.h"
#include "update.h"
#include <string.h>
using namespace LAMMPS_NS;

View File

@ -11,10 +11,10 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lj_cut_dipole_long.h"
#include "atom.h"
#include "comm.h"
@ -26,7 +26,6 @@
#include "memory.h"
#include "error.h"
#include "update.h"
#include <string.h>
using namespace LAMMPS_NS;

View File

@ -15,10 +15,10 @@
Contributing author: Pieter J. in 't Veld and Stan Moore (Sandia)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "math_const.h"
#include "math_vector.h"
#include "pair_lj_long_dipole_long.h"

View File

@ -11,8 +11,8 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include <string.h>
#include <stdlib.h>
#include <cstring>
#include <cstdlib>
#include "fix_gpu.h"
#include "atom.h"
#include "force.h"

View File

@ -15,9 +15,10 @@
Contributing author: Trung Dac Nguyen (ORNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_beck_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
#include "math_special.h"

View File

@ -15,9 +15,10 @@
Contributing author: Trung Dac Nguyen (ORNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_born_coul_long_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -33,7 +34,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "kspace.h"
#include "gpu_extra.h"

View File

@ -15,9 +15,10 @@
Contributing authors: Trung Dac Nguyen (ORNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_born_coul_wolf_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -33,7 +34,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Trung Dac Nguyen (ORNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_born_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing authors: Trung Dac Nguyen (ORNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_buck_coul_cut_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Trung Dac Nguyen (ORNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_buck_coul_long_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "kspace.h"
#include "gpu_extra.h"

View File

@ -15,9 +15,10 @@
Contributing author: Trung Dac Nguyen (ORNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_buck_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Trung Dac Nguyen (ORNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_colloid_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Trung Dac Nguyen
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_coul_cut_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Trung Dac Nguyen (ndtrung@umich.edu)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_coul_debye_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Trung Dac Nguyen (ORNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_coul_dsf_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
#define MY_PIS 1.77245385090551602729

View File

@ -15,9 +15,10 @@
Contributing author: Axel Kohlmeyer (Temple)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_coul_long_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "kspace.h"
#include "gpu_extra.h"

View File

@ -15,9 +15,10 @@
Contributing author: Trung Dac Nguyen (ORNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_dpd_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -33,7 +34,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Trung Dac Nguyen (ORNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_dpd_tstat_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -33,7 +34,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,9 @@
Contributing authors: Trung Dac Nguyen (ORNL), W. Michael Brown (ORNL)
------------------------------------------------------------------------- */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_eam_alloy_gpu.h"
#include "atom.h"
#include "force.h"

View File

@ -15,9 +15,9 @@
Contributing authors: Trung Dac Nguyen (ORNL), W. Michael Brown (ORNL)
------------------------------------------------------------------------- */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_eam_fs_gpu.h"
#include "atom.h"
#include "force.h"

View File

@ -15,10 +15,10 @@
Contributing authors: Trung Dac Nguyen (ORNL), W. Michael Brown (ORNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_eam_gpu.h"
#include "atom.h"
#include "force.h"

View File

@ -20,7 +20,7 @@ PairStyle(eam/gpu,PairEAMGPU)
#ifndef LMP_PAIR_EAM_GPU_H
#define LMP_PAIR_EAM_GPU_H
#include <stdio.h>
#include <cstdio>
#include "pair_eam.h"
namespace LAMMPS_NS {

View File

@ -15,9 +15,10 @@
Contributing author: Trung Dac Nguyen (ORNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_gauss_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Mike Brown (SNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_gayberne_gpu.h"
#include "math_extra.h"
#include "atom.h"
@ -34,7 +35,6 @@
#include "universe.h"
#include "domain.h"
#include "update.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Mike Brown (SNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lj96_cut_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Mike Brown (SNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lj_charmm_coul_long_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "kspace.h"
#include "gpu_extra.h"

View File

@ -15,9 +15,10 @@
Contributing author: Mike Brown (SNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lj_class2_coul_long_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "kspace.h"
#include "gpu_extra.h"

View File

@ -15,9 +15,10 @@
Contributing author: Mike Brown (SNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lj_class2_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Trung Dac Nguyen (ndactrung@gmail.com)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lj_cubic_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Mike Brown (SNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lj_cut_coul_cut_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Trung Dac Nguyen (ORNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lj_cut_coul_debye_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Mike Brown (SNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lj_cut_coul_dsf_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
#define MY_PIS 1.77245385090551602729

View File

@ -15,9 +15,10 @@
Contributing author: Mike Brown (SNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lj_cut_coul_long_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "kspace.h"
#include "gpu_extra.h"

View File

@ -15,9 +15,10 @@
Contributing author: Trung Dac Nguyen (ORNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lj_cut_coul_msm_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -33,7 +34,6 @@
#include "update.h"
#include "domain.h"
#include "kspace.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Trung Dac Nguyen (ORNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lj_cut_dipole_cut_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Mike Brown (SNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lj_cut_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Inderaj Bains (NVIDIA), ibains@nvidia.com
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lj_expand_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Trung Dac Nguyen (ORNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lj_gromacs_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "kspace.h"
#include "gpu_extra.h"

View File

@ -15,9 +15,10 @@
Contributing author: Mike Brown (SNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lj_sdk_coul_long_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "kspace.h"
#include "gpu_extra.h"

View File

@ -15,9 +15,10 @@
Contributing author: Mike Brown (SNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lj_sdk_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Trung Dac Nguyen (ORNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_lj_sf_dipole_sf_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Trung Dac Nguyen (ORNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_mie_cut_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Mike Brown (SNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_morse_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Mike Brown (SNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_resquared_gpu.h"
#include "math_extra.h"
#include "atom.h"
@ -34,7 +35,6 @@
#include "universe.h"
#include "domain.h"
#include "update.h"
#include <string.h>
#include "gpu_extra.h"
using namespace LAMMPS_NS;

View File

@ -15,9 +15,10 @@
Contributing author: Trung Dac Nguyen (ORNL)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "pair_soft_gpu.h"
#include "atom.h"
#include "atom_vec.h"
@ -32,7 +33,6 @@
#include "universe.h"
#include "update.h"
#include "domain.h"
#include <string.h>
#include "gpu_extra.h"
#include "math_const.h"

Some files were not shown because too many files have changed in this diff Show More