remove unused variables

This commit is contained in:
Axel Kohlmeyer
2013-07-13 11:42:56 +02:00
parent 10eceb270c
commit 82251837e4
5 changed files with 12 additions and 15 deletions

View File

@ -494,7 +494,7 @@ void Pair::init_tables(double cut_coul, double *cut_respa)
void Pair::init_tables_disp(double cut_lj_global)
{
int masklo,maskhi;
double r, rsq, r2inv, force_coul, force_lj;
double rsq;
double g_ewald_6 = force->kspace->g_ewald_6;
double g2 = g_ewald_6*g_ewald_6, g6 = g2*g2*g2, g8 = g6*g2;
@ -567,7 +567,7 @@ void Pair::init_tables_disp(double cut_lj_global)
// deltas at itablemax only needed if corresponding rsq < cut*cut
// if so, compute deltas between rsq and cut*cut
double f_tmp,c_tmp,e_tmp,p_tmp = 0.0,v_tmp = 0.0;
double f_tmp,e_tmp;
double cut_lj_globalsq;
itablemin = minrsq_lookup.i & ndispmask;
itablemin >>= ndispshiftbits;