[CodeFactor] Apply fixes to commit 0606491

This commit is contained in:
codefactor-io
2026-03-12 19:37:50 +00:00
parent 060649192f
commit 8f79257155
384 changed files with 1197 additions and 1215 deletions
@@ -67,7 +67,7 @@ public class Ssf3ValidationTests
double c1 = a1 * a1;
double coef2 = b1 + c1;
double coef3 = -(c1 + b1 * c1);
double coef3 = -(c1 + (b1 * c1));
double coef4 = c1 * c1;
double coef1 = 1.0 - coef2 - coef3 - coef4;
@@ -84,7 +84,7 @@ public class Ssf3ValidationTests
else
{
// y = coef1*x + coef2*y[1] + coef3*y[2] + coef4*y[3]
filt = coef1 * src + coef2 * filt1 + coef3 * filt2 + coef4 * filt3;
filt = (coef1 * src) + (coef2 * filt1) + (coef3 * filt2) + (coef4 * filt3);
}
result.Add(filt);