Skip to content

Rename scoreRow to scoreCell. #2952

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 9, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions webapp/src/Utils/Scoreboard/Scoreboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,40 +136,40 @@ protected function calculateScoreboard(): void
{
// Calculate matrix and update scores.
$this->matrix = [];
foreach ($this->scoreCache as $scoreRow) {
$teamId = $scoreRow->getTeam()->getTeamid();
$probId = $scoreRow->getProblem()->getProbid();
foreach ($this->scoreCache as $scoreCell) {
$teamId = $scoreCell->getTeam()->getTeamid();
$probId = $scoreCell->getProblem()->getProbid();
// Skip this row if the team or problem is not known by us.
if (!array_key_exists($teamId, $this->teams) ||
!array_key_exists($probId, $this->problems)) {
continue;
}

$penalty = Utils::calcPenaltyTime(
$scoreRow->getIsCorrect($this->restricted),
$scoreRow->getSubmissions($this->restricted),
$scoreCell->getIsCorrect($this->restricted),
$scoreCell->getSubmissions($this->restricted),
$this->penaltyTime, $this->scoreIsInSeconds
);

$this->matrix[$teamId][$probId] = new ScoreboardMatrixItem(
isCorrect: $scoreRow->getIsCorrect($this->restricted),
isFirst: $scoreRow->getIsCorrect($this->restricted) && $scoreRow->getIsFirstToSolve(),
numSubmissions: $scoreRow->getSubmissions($this->restricted),
numSubmissionsPending: $scoreRow->getPending($this->restricted),
time: $scoreRow->getSolveTime($this->restricted),
isCorrect: $scoreCell->getIsCorrect($this->restricted),
isFirst: $scoreCell->getIsCorrect($this->restricted) && $scoreCell->getIsFirstToSolve(),
numSubmissions: $scoreCell->getSubmissions($this->restricted),
numSubmissionsPending: $scoreCell->getPending($this->restricted),
time: $scoreCell->getSolveTime($this->restricted),
penaltyTime: $penalty,
runtime: $scoreRow->getRuntime($this->restricted),
numSubmissionsInFreeze: $scoreRow->getPending(false),
runtime: $scoreCell->getRuntime($this->restricted),
numSubmissionsInFreeze: $scoreCell->getPending(false),
);

if ($scoreRow->getIsCorrect($this->restricted)) {
$solveTime = Utils::scoretime($scoreRow->getSolveTime($this->restricted),
if ($scoreCell->getIsCorrect($this->restricted)) {
$solveTime = Utils::scoretime($scoreCell->getSolveTime($this->restricted),
$this->scoreIsInSeconds);
$contestProblem = $this->problems[$scoreRow->getProblem()->getProbid()];
$contestProblem = $this->problems[$scoreCell->getProblem()->getProbid()];
$this->scores[$teamId]->numPoints += $contestProblem->getPoints();
$this->scores[$teamId]->solveTimes[] = $solveTime;
$this->scores[$teamId]->totalTime += $solveTime + $penalty;
$this->scores[$teamId]->totalRuntime += $scoreRow->getRuntime($this->restricted);
$this->scores[$teamId]->totalRuntime += $scoreCell->getRuntime($this->restricted);
}
}

Expand Down
Loading