-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
76 changed files
with
1,071 additions
and
958 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
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
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,14 +1,53 @@ | ||
from . import tree | ||
from ._base.axes import MoveAxisOperator, RavelOperator, ReshapeOperator | ||
from ._base.config import Config | ||
from ._config import Config | ||
from .core import ( | ||
AbstractLinearOperator, | ||
BlockColumnOperator, | ||
BlockDiagonalOperator, | ||
BlockRowOperator, | ||
BroadcastDiagonalOperator, | ||
DenseBlockDiagonalOperator, | ||
DiagonalOperator, | ||
HomothetyOperator, | ||
IdentityOperator, | ||
IndexOperator, | ||
MoveAxisOperator, | ||
RavelOperator, | ||
ReshapeOperator, | ||
SymmetricBandToeplitzOperator, | ||
diagonal, | ||
lower_triangular, | ||
negative_semidefinite, | ||
orthogonal, | ||
positive_semidefinite, | ||
square, | ||
symmetric, | ||
upper_triangular, | ||
) | ||
|
||
__all__ = [ | ||
# _base.config | ||
'Config', | ||
# tree | ||
'tree', | ||
# _base.axes | ||
# core | ||
'AbstractLinearOperator', | ||
'IdentityOperator', | ||
'HomothetyOperator', | ||
'MoveAxisOperator', | ||
'RavelOperator', | ||
'ReshapeOperator', | ||
'BlockRowOperator', | ||
'BlockDiagonalOperator', | ||
'BlockColumnOperator', | ||
'DenseBlockDiagonalOperator', | ||
'BroadcastDiagonalOperator', | ||
'DiagonalOperator', | ||
'IndexOperator', | ||
'SymmetricBandToeplitzOperator', | ||
'diagonal', | ||
'lower_triangular', | ||
'upper_triangular', | ||
'symmetric', | ||
'positive_semidefinite', | ||
'negative_semidefinite', | ||
'square', | ||
'orthogonal', | ||
# config | ||
'Config', | ||
] |
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
File renamed without changes.
13 changes: 6 additions & 7 deletions
13
src/furax/instruments/sat.py → src/furax/_instruments/sat.py
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
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 |
---|---|---|
@@ -0,0 +1,57 @@ | ||
from ._axes import MoveAxisOperator, RavelOperator, ReshapeOperator | ||
from ._base import ( | ||
AbstractLazyInverseOperator, | ||
AbstractLazyInverseOrthogonalOperator, | ||
AbstractLinearOperator, | ||
AdditionOperator, | ||
CompositionOperator, | ||
HomothetyOperator, | ||
IdentityOperator, | ||
InverseOperator, | ||
TransposeOperator, | ||
diagonal, | ||
lower_triangular, | ||
negative_semidefinite, | ||
orthogonal, | ||
positive_semidefinite, | ||
square, | ||
symmetric, | ||
upper_triangular, | ||
) | ||
from ._blocks import BlockColumnOperator, BlockDiagonalOperator, BlockRowOperator | ||
from ._dense import DenseBlockDiagonalOperator | ||
from ._diagonal import BroadcastDiagonalOperator, DiagonalOperator | ||
from ._indices import IndexOperator | ||
from ._toeplitz import SymmetricBandToeplitzOperator, dense_symmetric_band_toeplitz | ||
|
||
__all__ = [ | ||
'AbstractLinearOperator', | ||
'AbstractLazyInverseOperator', | ||
'AbstractLazyInverseOrthogonalOperator', | ||
'TransposeOperator', | ||
'InverseOperator', | ||
'AdditionOperator', | ||
'CompositionOperator', | ||
'IdentityOperator', | ||
'HomothetyOperator', | ||
'diagonal', | ||
'lower_triangular', | ||
'upper_triangular', | ||
'symmetric', | ||
'positive_semidefinite', | ||
'negative_semidefinite', | ||
'square', | ||
'orthogonal', | ||
'MoveAxisOperator', | ||
'RavelOperator', | ||
'ReshapeOperator', | ||
'BlockRowOperator', | ||
'BlockDiagonalOperator', | ||
'BlockColumnOperator', | ||
'DenseBlockDiagonalOperator', | ||
'BroadcastDiagonalOperator', | ||
'DiagonalOperator', | ||
'IndexOperator', | ||
'SymmetricBandToeplitzOperator', | ||
'dense_symmetric_band_toeplitz', | ||
] |
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
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
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
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
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
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
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
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Oops, something went wrong.