master > master: code py - Trennwand reduziert

This commit is contained in:
RD 2022-06-09 15:03:28 +02:00
parent a536d16c1d
commit b79cc24bc4
1 changed files with 2 additions and 2 deletions

View File

@ -444,8 +444,8 @@ def display_cost_matrix_halves(
table_costs2, table_moves2 = represent_cost_matrix(Costs=Costs2, path=path2, X=X2, Y=Y2, pad=True);
# merge Taellen:
table_costs = np.concatenate([table_costs1, table_costs2[::-1, ::-1]], axis=1);
table_moves = np.concatenate([table_moves1, table_moves2[::-1, ::-1]], axis=1);
table_costs = np.concatenate([table_costs1[:, :-1], table_costs2[::-1, ::-1]], axis=1);
table_moves = np.concatenate([table_moves1[:, :-1], table_moves2[::-1, ::-1]], axis=1);
if just_moves:
table = table_moves;
else: