fix(soak): reduce scale coeff 73/37273/3
authorVratko Polak <vrpolak@cisco.com>
Fri, 30 Sep 2022 13:54:25 +0000 (15:54 +0200)
committerVratko Polak <vrpolak@cisco.com>
Fri, 30 Sep 2022 13:54:25 +0000 (15:54 +0200)
After some experiments using simulator (based on real measurment data),
coeff value of 5 gives nice balance between exploration and precision.

Change-Id: I6c416ed5bf3796b2e952ae4d17ab6e6bce5e1b5f
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
resources/libraries/python/PLRsearch/PLRsearch.py

index 0e78cc9..0314a80 100644 (file)
@@ -572,7 +572,7 @@ class PLRsearch:
             # See https://stackoverflow.com/questions/15137292/large-objects-and-multiprocessing-pipes-and-send
             worker = multiprocessing.Process(
                 target=Integrator.try_estimate_nd,
-                args=(worker_pipe_end, 10.0, self.trace_enabled)
+                args=(worker_pipe_end, 5.0, self.trace_enabled)
             )
             worker.daemon = True
             worker.start()