Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielCorralesAlonso committed Nov 21, 2024
2 parents 80ba34d + 082c9db commit 0b3ff53
Show file tree
Hide file tree
Showing 3 changed files with 1,039 additions and 1,622 deletions.
2 changes: 1 addition & 1 deletion config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ calculate_info_values: True


# -- Flag for assigning a new test
new_test: True
new_test: False

# --------- If new_test = True, the following parameters must be defined
cost_new_test: 3
Expand Down
3 changes: 3 additions & 0 deletions update.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,11 @@ def update_influence_diagram(model_type = None, value_function = None, elicit =

if not os.path.exists(output_dir):
os.makedirs(output_dir)
if not os.path.exists(f"{output_dir}/decision_models"):
os.makedirs(f"{output_dir}/decision_models")
if not os.path.exists(f"{output_dir}/output_images"):
os.makedirs(f"{output_dir}/output_images")
if not os.path.exists(f"{output_dir}/output_data"):
os.makedirs(f"{output_dir}/output_data")


Expand Down
Loading

0 comments on commit 0b3ff53

Please sign in to comment.