forked from lijiext/lammps
Switched to standard C++ header files for consistency with other source files
This commit is contained in:
parent
341fa160fe
commit
a4a3133b76
|
@ -15,7 +15,7 @@
|
|||
|
||||
#include <iostream>
|
||||
#include <cassert>
|
||||
#include <math.h>
|
||||
#include <cmath>
|
||||
|
||||
#include "lal_dipole_long_lj.h"
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
#include <iostream>
|
||||
#include <cassert>
|
||||
#include <math.h>
|
||||
#include <cmath>
|
||||
|
||||
#include "lal_lj_expand_coul_long.h"
|
||||
|
||||
|
|
|
@ -15,10 +15,10 @@
|
|||
Contributing author: Trung Dac Nguyen (Northwestern)
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
#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_gpu.h"
|
||||
#include "atom.h"
|
||||
#include "atom_vec.h"
|
||||
|
|
|
@ -15,9 +15,10 @@
|
|||
Contributing author: Trung Nguyen (Northwestern)
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
#include <math.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <cmath>
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
#include "pair_lj_expand_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"
|
||||
|
||||
|
|
Loading…
Reference in New Issue