Skip to content

Commit

Permalink
Remove composite coefficient names from parameters.json
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindeide committed Nov 29, 2023
1 parent c05bd4d commit 86a31ef
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
1 change: 0 additions & 1 deletion docs/reference/configuration/keywords.rst
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,6 @@ and/or history matching project.
"ID" : {
"A" : 0.88,
},
"ID:A" : 0.88,
}
Expand Down
9 changes: 0 additions & 9 deletions src/ert/enkf_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,6 @@ def _value_export_json(
key: dict(param_map.items()) for key, param_map in values.items()
}

# Composite
json_out.update(
{
f"{key}:{param}": value
for key, param_map in values.items()
for param, value in param_map.items()
}
)

# Disallow NaN from being written: ERT produces the parameters and the only
# way for the output to be NaN is if the input is invalid or if the sampling
# function is buggy. Either way, that would be a bug and we can report it by
Expand Down

0 comments on commit 86a31ef

Please sign in to comment.