remove dead code

This commit is contained in:
Axel Kohlmeyer
2020-09-25 21:50:53 -04:00
parent 66c4627775
commit a963e85846
5 changed files with 1 additions and 8 deletions

View File

@ -447,10 +447,6 @@ double AngleClass2::single(int type, int i1, int i2, int i3)
if (c > 1.0) c = 1.0;
if (c < -1.0) c = -1.0;
double s = sqrt(1.0 - c*c);
if (s < SMALL) s = SMALL;
s = 1.0/s;
double dtheta = acos(c) - theta0[type];
double dtheta2 = dtheta*dtheta;
double dtheta3 = dtheta2*dtheta;