X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2Fsearch%2FOptimizedSearchAlgorithm.py;h=f89acd56b2cc3d2649d25ae3e2441df4d1ae4572;hb=refs%2Fchanges%2F68%2F12268%2F36;hp=c96ab444e23e5417b1ef7f23d57e5b7276cd1a2f;hpb=9a7dde749199b2a78c246bc741d384785ea9b946;p=csit.git diff --git a/resources/libraries/python/search/OptimizedSearchAlgorithm.py b/resources/libraries/python/search/OptimizedSearchAlgorithm.py index c96ab444e2..f89acd56b2 100644 --- a/resources/libraries/python/search/OptimizedSearchAlgorithm.py +++ b/resources/libraries/python/search/OptimizedSearchAlgorithm.py @@ -457,6 +457,7 @@ class OptimizedSearchAlgorithm(AbstractSearchAlgorithm): pdr_rel_width = 0.0 if max(ndr_rel_width, pdr_rel_width) > state.width_goal: # We have to narrow some width. + # TODO: Prefer NDR, it could invalidate PDR (not vice versa). if ndr_rel_width >= pdr_rel_width: new_tr = self.half_step_up(ndr_rel_width, ndr_lo.target_tr) logging.info("Bisecting for NDR at %s", new_tr)