diff options
author | Vratko Polak <vrpolak@cisco.com> | 2018-07-30 17:48:50 +0200 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2018-08-22 06:40:35 +0000 |
commit | 56fe9e512019d90a5647f4a244ffb8b6f6ff9c47 (patch) | |
tree | 8aa98f5422767232b72e71ac577f8a0e3b2c9777 /resources/libraries/python/MLRsearch/AbstractSearchAlgorithm.py | |
parent | bc49817b524f0478900da35aaec5f8418e698392 (diff) |
CSIT-1222: Do two doublings in external MLRsearch
Make number of doublings configurable,
keep Python default at 1, set Robot default to 2.
Also make docstring types unique
(pylint was complaining about classes and modules having the same name).
Increase MLRsearch version to 0.2.0.
Change-Id: Ib846032e79ff52994503c0cfef2f86655502c275
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
Diffstat (limited to 'resources/libraries/python/MLRsearch/AbstractSearchAlgorithm.py')
-rw-r--r-- | resources/libraries/python/MLRsearch/AbstractSearchAlgorithm.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/libraries/python/MLRsearch/AbstractSearchAlgorithm.py b/resources/libraries/python/MLRsearch/AbstractSearchAlgorithm.py index 538322a42c..08f8b7e0a9 100644 --- a/resources/libraries/python/MLRsearch/AbstractSearchAlgorithm.py +++ b/resources/libraries/python/MLRsearch/AbstractSearchAlgorithm.py @@ -25,7 +25,7 @@ class AbstractSearchAlgorithm(object): """Store the rate provider. :param measurer: Object able to perform trial or composite measurements. - :type measurer: AbstractMeasurer + :type measurer: AbstractMeasurer.AbstractMeasurer """ # TODO: Type check for AbstractMeasurer? self.measurer = measurer @@ -45,7 +45,7 @@ class AbstractSearchAlgorithm(object): :type packet_loss_ratio: float :returns: Structure containing narrowed down intervals and their measurements. - :rtype: NdrPdrResult + :rtype: NdrPdrResult.NdrPdrResult """ # TODO: Do we agree on arguments related to precision or trial duration? pass |