Switched to standard C++ header files for consistency with other source files

This commit is contained in:
ndtrung 2018-06-01 23:13:49 -05:00
parent 341fa160fe
commit a4a3133b76
4 changed files with 10 additions and 10 deletions

View File

@ -15,7 +15,7 @@
#include <iostream>
#include <cassert>
#include <math.h>
#include <cmath>
#include "lal_dipole_long_lj.h"

View File

@ -15,7 +15,7 @@
#include <iostream>
#include <cassert>
#include <math.h>
#include <cmath>
#include "lal_lj_expand_coul_long.h"

View File

@ -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"

View File

@ -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"