[CodeFactor] Apply fixes to commit 4a01f03

This commit is contained in:
codefactor-io
2026-03-11 03:35:12 +00:00
parent 4a01f03cb4
commit 567fa89465
63 changed files with 293 additions and 302 deletions
+1 -1
View File
@@ -237,7 +237,7 @@ public sealed class Spearman : AbstractBase
}
// Average rank: 1-based position = countSmaller + (countEqual - 1) / 2.0 + 1
ranks[i] = countSmaller + (countEqual - 1) * 0.5 + 1.0;
ranks[i] = countSmaller + ((countEqual - 1) * 0.5) + 1.0;
}
}
/// <summary>Not supported. This indicator requires two input spans.</summary>