[CodeFactor] Apply fixes to commit 43380f1

This commit is contained in:
codefactor-io
2024-11-08 03:29:14 +00:00
parent 43380f13ab
commit 2a72b2881b
+1 -1
View File
@@ -63,7 +63,7 @@ public sealed class Fisher : AbstractBase
[MethodImpl(MethodImplOptions.AggressiveInlining)]
private double NormalizePrice(double price, double min, double max)
{
return 2 * ((price - min) / (max - min) - 0.5);
return 2 * (((price - min) / (max - min)) - 0.5);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]