Skip to content

Commit

Permalink
added missing arguments to function calls , which caused git test fai…
Browse files Browse the repository at this point in the history
…lure
  • Loading branch information
Abodi-Massarwa committed Jul 2, 2024
1 parent 7d41596 commit 94fdb07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_heterogeneous_matroid_constraints_algorithms.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def test_algorithm_2(run):
# logger.info(f"Starting to process data: {instance} \n categories are -> {categories} \n initial_agent_order is -> {initial_agent_order} \n -> agent_category_capacities are -> {agent_category_capacities}\n *********************************************************************************** ")
alloc = divide(algorithm=heterogeneous_matroid_constraints_algorithms.capped_round_robin, instance=instance,
item_categories=categories, agent_category_capacities=agent_category_capacities,
initial_agent_order=initial_agent_order)
initial_agent_order=initial_agent_order,target_category='c1')
logger.info(
f"Starting to process data: {instance} \n categories are -> {categories} \n initial_agent_order is -> {initial_agent_order} \n -> agent_category_capacities are -> {agent_category_capacities}\n *********************************************************************************** ")
logger.info(f"allocation is ------------->: {alloc}")
Expand All @@ -307,7 +307,7 @@ def test_algorithm_3(run):
alloc = divide(algorithm=heterogeneous_matroid_constraints_algorithms.two_categories_capped_round_robin,
instance=instance,
item_categories=categories, agent_category_capacities=agent_category_capacities,
initial_agent_order=initial_agent_order)
initial_agent_order=initial_agent_order,target_category_pair=('c1', 'c2'))
logger.info(
f"Starting to process data: {instance} \n categories are -> {categories} \n initial_agent_order is -> {initial_agent_order} \n -> agent_category_capacities are -> {agent_category_capacities}\n *********************************************************************************** ")
logger.info(f"allocation is ------------->: {alloc}")
Expand Down

0 comments on commit 94fdb07

Please sign in to comment.