Skip to content

Commit 9b466d4

Browse files
removed print line
1 parent c84bc9f commit 9b466d4

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

optibess_algorithm/output_calculator.py

-2
Original file line numberDiff line numberDiff line change
@@ -1245,8 +1245,6 @@ def _get_actions(self, year):
12451245
stride = self._df["pv_output"].values.strides[0]
12461246
split_hourly_power = ast(normalized_hourly_power, (YEAR_DAYS + day_add, DAY_LENGTH),
12471247
(DAY_LENGTH * stride, stride))
1248-
temp = normalized_hourly_power.reshape((YEAR_DAYS + day_add, DAY_LENGTH))
1249-
print(np.all(np.equal(split_hourly_power, temp)))
12501248
split_hourly_power = np.repeat(split_hourly_power, DAY_LENGTH, axis=0) + pos_encoding
12511249
split_prices = ast(sell_prices, (YEAR_DAYS + day_add, DAY_LENGTH), (DAY_LENGTH, sell_prices.strides[0]))
12521250
max_sell_prices = np.repeat(np.max(np.abs(split_prices), axis=1) + self.EPSILON, DAY_LENGTH)

0 commit comments

Comments
 (0)