Closed jgosmann closed 7 years ago
from nengolib.stats import sphere, ball print(repr(ball)) print(repr(sphere))
will print UniformHypersphere() and UniformHypersphere(surface=True) even though both are instances of ScatteredHypersphere.
UniformHypersphere()
UniformHypersphere(surface=True)
ScatteredHypersphere
will print
UniformHypersphere()
andUniformHypersphere(surface=True)
even though both are instances ofScatteredHypersphere
.