Skip to content

Commit

Permalink
backfix make_mat
Browse files Browse the repository at this point in the history
  • Loading branch information
carlocamilloni committed Dec 6, 2023
1 parent fa1d171 commit fa7d896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/make_mat/make_mat.py
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ def generate_c12_values(df, types, combinations):
combined_map = combined_map | combined_map.T
c12_map = np.where(combined_map, operation(all_c12), c12_map)

c12_map = np.where(c12_map is None, all_c12, c12_map)
c12_map = np.where(c12_map==None, all_c12, c12_map)

return c12_map

Expand Down

0 comments on commit fa7d896

Please sign in to comment.