Skip to content
Snippets Groups Projects
Commit 4da7a192 authored by Bas Nijholt's avatar Bas Nijholt
Browse files

2D: don't use np.empty as a small random number generator

parent ef5dbd1b
No related branches found
No related tags found
1 merge request!7implement 2D learner
......@@ -724,7 +724,7 @@ class Learner2D(BaseLearner):
# It is important not to return exact zeros because
# otherwise the algo will try to add the same point
# to the stack each time.
ip_real = lambda x: np.empty(len(x))
ip_real = lambda x: np.random.rand(len(x)) * 1e-15
n_interp = list(self._interp.values())
values = ip_real(p[n_interp])
for n, value in zip(n_interp, values):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment