Skip to content

Commit

Permalink
EverestRunModel: rename realization_id to realization_name
Browse files Browse the repository at this point in the history
  • Loading branch information
verveerpj committed Dec 19, 2024
1 parent ce39215 commit 7bb2909
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ert/run_models/everest_run_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -758,12 +758,12 @@ def __init__(self) -> None:

def add(
self,
realization_id: int,
realization_name: int,
control_values: NDArray[np.float64],
objectives: NDArray[np.float64],
constraints: NDArray[np.float64] | None,
) -> None:
self._data[realization_id].append(
self._data[realization_name].append(
(
control_values.copy(),
objectives.copy(),
Expand Down

0 comments on commit 7bb2909

Please sign in to comment.