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

Algorithm Challenge #15

Merged
merged 8 commits into from
Feb 22, 2024
Merged

Algorithm Challenge #15

merged 8 commits into from
Feb 22, 2024

Conversation

iglesias
Copy link
Owner

Tool to compute a (non-optimal) touring route.

Two-stage approach solving deliveries based on capacity first and then incorporating optimization over pickups.

It is expected that the second part will not scale well as the number of picked deliveries gets larger (a more efficient greedy algorithm or dynamic programming method based on minimum spanning tree would be used instead if this is an issue).

For the second stage, the distances are computed following the Manhatta or taxicab geometry.

Repository owner deleted a comment from github-actions bot Feb 19, 2024
Repository owner deleted a comment from github-actions bot Feb 20, 2024
int capacity;
};

// Forward declaration.
Copy link
Owner Author

@iglesias iglesias Feb 20, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • remove comment, outdated after separating initial main into main and solver.

Repository owner deleted a comment from github-actions bot Feb 22, 2024
@iglesias iglesias merged commit 3e84c6e into master Feb 22, 2024
1 check passed
@iglesias iglesias deleted the tkp branch March 28, 2024 09:37
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 this pull request may close these issues.

1 participant