From 536a033a9b946b90cc7cb64b3fea46c3311983c9 Mon Sep 17 00:00:00 2001 From: sowens99 Date: Fri, 18 Sep 2020 05:29:41 -0400 Subject: [PATCH] Remove unnecessary variable --- calculator.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/calculator.c b/calculator.c index a53550d..0d3ded1 100644 --- a/calculator.c +++ b/calculator.c @@ -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()) { @@ -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; } }