From d5817b6264359ba54c0caee66db9d71dd49266ca Mon Sep 17 00:00:00 2001 From: Michael Votaw Date: Sat, 7 Sep 2024 12:09:52 -0500 Subject: [PATCH] Fixed typo (missing semicolon) --- src/StepParityCost.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/StepParityCost.cpp b/src/StepParityCost.cpp index 1110542331..6c17627088 100644 --- a/src/StepParityCost.cpp +++ b/src/StepParityCost.cpp @@ -128,7 +128,7 @@ float* StepParityCost::getActionCost(State * initialState, State * resultState, costs[COST_SPIN] += calcSpinCosts(initialState, resultState, combinedColumns, columnCount); costs[COST_FOOTSWITCH] += caclFootswitchCost( initialState, resultState, row, combinedColumns, elapsedTime, columnCount); costs[COST_SIDESWITCH] += calcSideswitchCost( initialState, resultState, columnCount); - costs[COST_MISSED_FOOTSWITCH] += calcMissedFootswitchCost( row, jackedLeft, jackedRight, columnCount) + costs[COST_MISSED_FOOTSWITCH] += calcMissedFootswitchCost( row, jackedLeft, jackedRight, columnCount); costs[COST_JACK] += calcJackCost( movedLeft, movedRight, jackedLeft, jackedRight, elapsedTime, columnCount); costs[COST_DISTANCE] += calcBigMovementsQuicklyCost( initialState, resultState, elapsedTime, columnCount); // costs[COST_CROWDED_BRACKET] += calcCrowdedBracketCost(initialState, resultState, elapsedTime, columnCount);