Skip to content

Commit

Permalink
fix all permutations
Browse files Browse the repository at this point in the history
  • Loading branch information
killiansheriff committed Nov 5, 2024
1 parent 435a2aa commit fc51576
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WarrenCowleyParameters/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def _get_labels_and_values(self, unique_types, wc_for_shells, shell_index):
idx = range(len(unique_types))

# for i, j in itertools.combinations_with_replacement(idx, 2):
for i, j in itertools.combinations(idx, 2):
for i, j in itertools.permutations(idx, 2):
namei = self.get_type_name(unique_types[i])
namej = self.get_type_name(unique_types[j])
labels.append(f"{namei}-{namej}")
Expand Down

0 comments on commit fc51576

Please sign in to comment.