restoring working structure for config submodule
This commit is contained in:
parent
b53288c0be
commit
3873a3d20d
|
@ -130,7 +130,7 @@ for name in filenames:
|
||||||
|
|
||||||
if not options.selective:
|
if not options.selective:
|
||||||
seeds = coords[np.random.choice(coords.shape[0], options.N, replace=False)] \
|
seeds = coords[np.random.choice(coords.shape[0], options.N, replace=False)] \
|
||||||
+ np.broadcast_to(size/grid,(options.N,3))*(np.random.rand(options.N,3)*.5-.25) # wobble without leaving grid
|
+ np.broadcast_to(size/grid,(options.N,3))*(np.random.rand(options.N,3)*.5-.25) # wobble without leaving grid
|
||||||
else:
|
else:
|
||||||
seeds = np.empty((options.N,3))
|
seeds = np.empty((options.N,3))
|
||||||
seeds[0] = np.random.random(3) * size
|
seeds[0] = np.random.random(3) * size
|
||||||
|
|
|
@ -19,7 +19,7 @@ from ._geom import Geom # noqa
|
||||||
from . import solver # noqa
|
from . import solver # noqa
|
||||||
|
|
||||||
# deprecated
|
# deprecated
|
||||||
from ._asciitable import ASCIItable # noqa
|
from ._asciitable import ASCIItable # noqa
|
||||||
from ._config import Material # noqa
|
from ._test import Test # noqa
|
||||||
from ._test import Test # noqa
|
from .config import Material # noqa
|
||||||
from .util import extendableOption # noqa
|
from .util import extendableOption # noqa
|
||||||
|
|
Loading…
Reference in New Issue