Skip to content

Commit

Permalink
Merge pull request #142 from rolfverberg/main
Browse files Browse the repository at this point in the history
fix: error in return ConstructBaseline.construct_baseline
  • Loading branch information
rolfverberg authored Oct 10, 2024
2 parents 5c12d2b + ff03aa6 commit 45d6efc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion CHAP/common/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,10 @@ def confirm(event):
full_output=True)

if not interactive and filename is None:
return baseline
config = {
'tol': tol, 'lambda': lam, 'max_iter': max_iter,
'num_iter': num_iter, 'error': error, 'mask': mask}
return baseline, config

lambdas = [lam]
weights = [w]
Expand Down

0 comments on commit 45d6efc

Please sign in to comment.