From f800b899b4b1f79400ce0d0868f7f75f00e72aac Mon Sep 17 00:00:00 2001 From: James Cherry Date: Sat, 11 Jan 2025 10:27:05 -0700 Subject: [PATCH] report_checks-endpoint_path_count -slack_max Signed-off-by: James Cherry --- search/PathGroup.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/search/PathGroup.cc b/search/PathGroup.cc index 4efd309f..e931fbed 100644 --- a/search/PathGroup.cc +++ b/search/PathGroup.cc @@ -797,7 +797,8 @@ PathGroups::enumPathEnds(PathGroup *group, // Parallel path enumeratation to find the endpoint_path_count/max path ends. for (int n = 0; path_enum.hasNext() && n < group_path_count; n++) { PathEnd *end = path_enum.next(); - group->insert(end); + if (group->savable(end)) + group->insert(end); } }