From 070500f1bf1f1da5264ccfcf2088797c2e8c5e0c Mon Sep 17 00:00:00 2001 From: Vratko Polak Date: Tue, 4 Feb 2020 12:18:07 +0100 Subject: [PATCH] Fix argument order in MLRsearch Introduced in last refactor. Luckily, the result were still correct, just with confusing logs and perhaps longer search time in unstable test cases. Change-Id: I26dd5714fb588ea07afe85583b3ab3b4bd53d9ec Signed-off-by: Vratko Polak --- resources/libraries/python/MLRsearch/MultipleLossRatioSearch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/libraries/python/MLRsearch/MultipleLossRatioSearch.py b/resources/libraries/python/MLRsearch/MultipleLossRatioSearch.py index 29b72505de..a4e387441f 100644 --- a/resources/libraries/python/MLRsearch/MultipleLossRatioSearch.py +++ b/resources/libraries/python/MLRsearch/MultipleLossRatioSearch.py @@ -605,7 +605,7 @@ class MultipleLossRatioSearch(AbstractSearchAlgorithm): @staticmethod def _ndrpdr_duration( - state, ndr_lo, pdr_lo, ndr_hi, pdr_hi, ndr_rel_width, + state, ndr_lo, ndr_hi, pdr_lo, pdr_hi, ndr_rel_width, pdr_rel_width): """Perform duration-based trials within a ndrpdr phase -- 2.16.6