Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Givikap120 committed Nov 28, 2024
1 parent eef605e commit 4a5f2f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ private double calculateEffectiveMissCount(OsuDifficultyAttributes attributes)
double deviation = hitWindow300 / (Math.Sqrt(2) * SpecialFunctions.ErfInv(pLowerBound));

double randomValue = Math.Sqrt(2 / Math.PI) * hitWindow100 * Math.Exp(-0.5 * Math.Pow(hitWindow100 / deviation, 2))
/ (deviation * SpecialFunctions.Erf(hitWindow100 / (Math.Sqrt(2) * deviation)));
/ (deviation * SpecialFunctions.Erf(hitWindow100 / (Math.Sqrt(2) * deviation)));

Check failure on line 401 in osu.Game.Rulesets.Osu/Difficulty/OsuPerformanceCalculator.cs

View workflow job for this annotation

GitHub Actions / Code Quality

Indent size is incorrect, expected indent 21 spaces in osu.Game.Rulesets.Osu\Difficulty\OsuPerformanceCalculator.cs on line 401

deviation *= Math.Sqrt(1 - randomValue);

Expand Down

0 comments on commit 4a5f2f9

Please sign in to comment.