Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Address Agent to Mission Permutations #1864

Closed
9 tasks
Gamenot opened this issue Feb 14, 2023 · 0 comments · Fixed by #1868
Closed
9 tasks

Address Agent to Mission Permutations #1864

Gamenot opened this issue Feb 14, 2023 · 0 comments · Fixed by #1868

Comments

@Gamenot
Copy link
Collaborator

Gamenot commented Feb 14, 2023

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.

  • 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}

Context

See: #1859

@Gamenot Gamenot added this to the `develop` branch close-down milestone Feb 14, 2023
@Gamenot Gamenot linked a pull request Feb 15, 2023 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant