-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactoring, added tests, fixed minor bug
- Loading branch information
1 parent
2f5171d
commit c391f95
Showing
7 changed files
with
458 additions
and
406 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
"""Modules implementing various multi-dimensional bounds.""" | ||
|
||
from .basic import UnitCube, Ellipsoid, UnitCubeEllipsoidMixture | ||
from .neural import NeuralBound, NautilusBound | ||
from .nautilus import NautilusBound | ||
from .neural import NeuralBound | ||
from .periodic import PhaseShift | ||
from .union import Union | ||
|
||
__all__ = ['UnitCube', 'Ellipsoid', 'UnitCubeEllipsoidMixture', 'Union', | ||
'NeuralBound', 'NautilusBound'] | ||
__all__ = ['Ellipsoid', 'NautilusBound', 'NeuralBound', | ||
'PhaseShift', 'Union', 'UnitCube', 'UnitCubeEllipsoidMixture'] |
Oops, something went wrong.