From 921c2f9482889990d78765c964edd240db72e4a2 Mon Sep 17 00:00:00 2001 From: Ryan Velazquez Date: Wed, 2 Oct 2019 07:12:42 -0400 Subject: [PATCH] Update kCellsAtMostSameBy comment --- src/engine/routing_algorithms/alternative_path_mld.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engine/routing_algorithms/alternative_path_mld.cpp b/src/engine/routing_algorithms/alternative_path_mld.cpp index 7fbe37dab..7bc14e566 100644 --- a/src/engine/routing_algorithms/alternative_path_mld.cpp +++ b/src/engine/routing_algorithms/alternative_path_mld.cpp @@ -51,8 +51,8 @@ struct Parameters // Alternative paths are still reasonable around the via node candidate (local optimality). // At least optimal around 10% sub-paths around the via node candidate. double kAtLeastOptimalAroundViaBy = 0.1; - // Alternative paths similarity requirement (sharing) based on calles. - // At least 15% different than the shortest path. + // Alternative paths similarity requirement (sharing) based on cells. + // At least 5% different than the shortest path. double kCellsAtMostSameBy = 0.95; };