Simulator Test

This commit is contained in:
mjalalzai 2023-07-20 16:13:58 -04:00
parent 13816dc2ae
commit ab1d6e5b69

View File

@ -22,7 +22,6 @@ def create_binary_tree_committees(num_levels, committee_id=0, parent_committee=N
if num_levels == 0:
return None
processing_time = 1 # Set the processing time for each committee (you can adjust this as needed)
committee = Committee(committee_id, parent_committee)
committee.child_committee = create_binary_tree_committees(num_levels - 1, committee_id + 1, committee)
return committee