fix_scalar_transport_equation: Unnecessary loop

Submitted by paul on Fri, 12/14/2018 - 14:01

I stumbled over https://github.com/CFDEMproject/LIGGGHTS-PUBLIC/blob/28301df8853491784b1...

for(int i=1;i< max_type+1; i++)
for(int j=1;j<max_type+1;j++)
capacity[i] = fix_capacity->compute_vector(i-1);

The loop over j is unnecessary since this is not a binary interaction parameter.