We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdeaaf4 commit eabb7d4Copy full SHA for eabb7d4
2 files changed
src/constants/analysis.ts
@@ -12,7 +12,7 @@
12
export const MOVE_CLASSIFICATION_THRESHOLDS = {
13
BLUNDER_THRESHOLD: 0.1,
14
INACCURACY_THRESHOLD: 0.05,
15
- EXCELLENT_WINRATE_ADVANTAGE_THRESHOLD: 0.1,
+ EXCELLENT_WINRATE_ADVANTAGE_THRESHOLD: 0.05,
16
MAIA_UNLIKELY_THRESHOLD: 0.1,
17
GOOD_THRESHOLD: -0.05,
18
} as const
src/types/base/tree.ts
@@ -339,7 +339,7 @@ export class GameNode {
339
currentMoveWinrate !== undefined &&
340
weightedAverageWinrate !== null
341
) {
342
- // Check if current move is at least 10% higher than weighted average
+ // Check if current move is at least x% higher than weighted average
343
excellent =
344
currentMoveWinrate >=
345
weightedAverageWinrate +
0 commit comments