Skip to content

Commit 6d7bfa8

Browse files
Bugfix
1 parent 64efed3 commit 6d7bfa8

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

accelforge/mapper/FFM/_join_pmappings/join_pmappings.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,7 @@ def __init__(
109109
def __call__(self, mapping: pd.DataFrame) -> bool:
110110
nondominated_by_all = np.ones(len(mapping), dtype=bool)
111111

112-
edp_mapping = _apply_edp_columns(
113-
mapping.copy(), self.metrics, return_only_objectives=True
114-
)
112+
edp_mapping = _apply_edp_columns(mapping.copy(), self.metrics)
115113

116114
for c in self.compare_to:
117115
nondominated = np.zeros(len(edp_mapping), dtype=bool)

0 commit comments

Comments
 (0)