Skip to content

Commit

Permalink
Remove unnecessary variable
Browse files Browse the repository at this point in the history
  • Loading branch information
malleoz committed Sep 18, 2020
1 parent af9916b commit 536a033
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions calculator.c
Original file line number Diff line number Diff line change
Expand Up @@ -2717,7 +2717,6 @@ struct Result calculateOrder(struct Job job) {
// A finished roadmap has been generated
// Rearrange the roadmap to save frames
struct OptimizeResult optimizeResult = optimizeRoadmap(root);
int fasterRoadmapFound = 0;
#pragma omp critical
{
if (optimizeResult.last->description.totalFramesTaken < getLocalRecord()) {
Expand All @@ -2733,7 +2732,6 @@ struct Result calculateOrder(struct Job job) {

// Reset the iteration count so we continue to explore near this record
iterationCount = 0;
fasterRoadmapFound = 1;
}
}

Expand Down

0 comments on commit 536a033

Please sign in to comment.