You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current mission permutation is not complete. The matching for Agent (n) by mission (m) permutation, n by m, does not contain all permutations and does not handle n != m permutations.
Proposed Work
Ensure that the following agent to mission matching cases are allowed in a test_agent_mission_permutations.py.
Agent (n) to mission (m) test cases where (R) is a random mission.
n > 0
ab by {} results in all of: {aR, bR}...
1 < m
a by 123 results in all of: {a1}, {a2}, {a3}
n == m
abc by 123 results in all of: {a1, b2, c3}, {a2, b3, c1}, {a3, b1, c2}
n != m
abc by 12 results in all of: {a1, b2, cR}, {a2, bR, c1}, {aR, b1, c2}
ab by 123 results in all of: {a1, b2}, {a2, b3}, {a3, b1}
Issue
The current mission permutation is not complete. The matching for Agent (n) by mission (m) permutation, n by m, does not contain all permutations and does not handle
n != m
permutations.Proposed Work
Ensure that the following agent to mission matching cases are allowed in a
test_agent_mission_permutations.py
.Context
See: #1859
The text was updated successfully, but these errors were encountered: