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

Irrellevant links #8

Open
0xfull opened this issue Sep 9, 2021 · 1 comment
Open

Irrellevant links #8

0xfull opened this issue Sep 9, 2021 · 1 comment
Assignees

Comments

@0xfull
Copy link
Collaborator

0xfull commented Sep 9, 2021

Some links do not have be considered during Grounding if a message cannot traverse this link.

  • How to define this mathematically?
  • Does it prune search space effectively?
  • How much?
@0xfull 0xfull self-assigned this Sep 9, 2021
@lu-hub77
Copy link
Collaborator

We could make use of the dimensions (x,y,z):

  • If (dimension(destination_processor) - dimension(start_processor)) = 0, then #needed_links = 0

In each dimension a message should not move more far than its destination processor:

  • For x, y, z: if (dimension(destination_processor) - dimension(start_processor)) > 0, then dimension(needed_links) <= dimension(destination_processor)
  • For x, y, z: if (dimension(destination_processor) - dimension(start_processor)) < 0, then dimension(needed_links) >= dimension(destination_processor)

In each dimension a message should not move away from the shortest path to its destination processor / move in the wrong direction :

  • If (dimension(destination_processor) - dimension(start_processor)) > 0, then dimension(needed_links) >= dimension(start_processor)
  • If (dimension(destination_processor) - dimension(start_processor)) < 0, then dimension(needed_links) <= dimension(start_processor)

These rules are only allowing the shortest path between the start and destination processor, but this is maybe too restricting.
If the shortest path is blocked due to a different communication, a bit longer path might be a good option as well?? (Better path, if blocking_time(shortest path) > time(2 * #steps_done_too_far) for x, y, z )

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

No branches or pull requests

3 participants