diff --git a/backend/src/analysis/argumentPriorityHandler.ts b/backend/src/analysis/argumentPriorityHandler.ts index 81db14e..29652ed 100644 --- a/backend/src/analysis/argumentPriorityHandler.ts +++ b/backend/src/analysis/argumentPriorityHandler.ts @@ -1,5 +1,5 @@ import { Score } from "../.shared/types"; -import { analyzeVotes } from "./voteAnalyzer"; +import { analyzeVotes } from "./reactionAnalyzer"; import { getArgumentScores } from "./argumentScoreHandler"; import { ReactionForGraph, getReactionsForGraph } from "../db/operations/reactionOperations"; import { getArgumentIdsByGraphId } from "../db/operations/argumentOperations"; diff --git a/backend/src/analysis/argumentScoreHandler.ts b/backend/src/analysis/argumentScoreHandler.ts index a1d3e8c..38de355 100644 --- a/backend/src/analysis/argumentScoreHandler.ts +++ b/backend/src/analysis/argumentScoreHandler.ts @@ -1,5 +1,5 @@ import { Score } from "../.shared/types"; -import { analyzeVotes } from "./voteAnalyzer"; +import { analyzeVotes } from "./reactionAnalyzer"; function getConsensusScore(argumentIndex: number, votingMatrix: number[][], diff --git a/backend/src/analysis/voteAnalyzer.ts b/backend/src/analysis/reactionAnalyzer.ts similarity index 100% rename from backend/src/analysis/voteAnalyzer.ts rename to backend/src/analysis/reactionAnalyzer.ts