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

add value-based comparator template #19

Merged
merged 2 commits into from
Aug 7, 2024
Merged

Conversation

cooperlarson
Copy link
Collaborator

Example:

struct WorstEdgeComparator {
bool operator()(const Edge& a, const Edge& b) const { return a.distance < b.distance; }
[[nodiscard]] double comparisonValue(const Edge& edge) const { return edge.distance; }
};

BoundedPriorityDeque<Edge, WorstEdgeComparator> worstEdges;

@cooperlarson cooperlarson added the enhancement New feature or request label Aug 7, 2024
@cooperlarson cooperlarson self-assigned this Aug 7, 2024
@cooperlarson cooperlarson merged commit 6b96a8e into master Aug 7, 2024
1 check passed
@cooperlarson cooperlarson deleted the value-compare-template branch August 7, 2024 15:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant