Skip to content

Commit

Permalink
Fix MC generation bug
Browse files Browse the repository at this point in the history
  • Loading branch information
andreicuceu committed Nov 8, 2024
1 parent 65842d6 commit da3ccc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vega/vega_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def __init__(self, main_path):
self.mc_config = {}
config = self.main_config['monte carlo']

self.mc_config['params'] = copy.deepcopy(self.params)
self.mc_config['params'] = {}
mc_params = self.main_config['mc parameters']
for param, value in mc_params.items():
self.mc_config['params'][param] = float(value)
Expand Down

0 comments on commit da3ccc0

Please sign in to comment.