Skip to content

Commit

Permalink
Requiring final scores when complete_only
Browse files Browse the repository at this point in the history
  • Loading branch information
yasserfarouk committed Apr 18, 2024
1 parent 9fb1e53 commit 4e3aa3b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion negmas/tournaments/neg/simple/cartesian.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,11 @@ def combine(

needed_files: list[tuple[str, str] | str] = []
if complete_only:
needed_files += [ALL_RESULTS_FILE_NAME, ALL_SCORES_FILE_NAME]
needed_files += [
ALL_RESULTS_FILE_NAME,
ALL_SCORES_FILE_NAME,
FINAL_SCORES_FILE_NAME,
]
else:
if recalc_details:
needed_files.append(RESULTS_DIR_NAME)
Expand Down

0 comments on commit 4e3aa3b

Please sign in to comment.