We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4396ceb + 29dca08 commit 8e6eec3Copy full SHA for 8e6eec3
1 file changed
backend/src/analysis/argumentPriorityHandler.ts
@@ -47,7 +47,7 @@ export async function getArgumentPriorities(graphId: string, userId: string): Pr
47
// Get priority for arguments with scores (consensus, fragmentation, clarity)
48
for (const [argumentId, score] of argumentScores) {
49
const uniquenessScore = uniquenessScores.get(argumentId) ?? 1;
50
- const priority = (1 + 20 * (score.consensus ?? 0) + 20 * (score.fragmentation ?? 0)) * (score.clarity + uniquenessScore) ** 2;
+ const priority = uniquenessScore * (1 + score.clarity + (score.consensus ?? 0) + (score.fragmentation ?? 0));
51
argumentPriorityMap.set(argumentId, priority);
52
}
53
0 commit comments