We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aea14d3 commit 1e1a9ddCopy full SHA for 1e1a9dd
pyomo/contrib/parmest/parmest.py
@@ -522,9 +522,8 @@ def compute_covariance_matrix(
522
if method == CovarianceMethod.finite_difference.value:
523
# store the FIM of all experiments
524
FIM_all_exp = []
525
- for (
526
- experiment
527
- ) in experiment_list: # loop through the experiments and compute the FIM
+ # loop through the experiments and compute the FIM
+ for experiment in experiment_list:
528
FIM_all_exp.append(
529
_finite_difference_FIM(
530
experiment,
0 commit comments