Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ift
NIFTy
Commits
99fae3d5
Commit
99fae3d5
authored
May 13, 2017
by
Theo Steininger
Browse files
Fixed missing `self` in LinearOperator method.
parent
de4350ba
Changes
1
Hide whitespace changes
Inline
Side-by-side
nifty/operators/linear_operator/linear_operator.py
View file @
99fae3d5
...
...
@@ -104,7 +104,7 @@ class LinearOperator(Loggable, object):
return
y
def
inverse_adjoint_times
(
self
,
x
,
spaces
=
None
,
**
kwargs
):
return
adjoint_inverse_times
(
x
,
spaces
,
**
kwargs
)
return
self
.
adjoint_inverse_times
(
x
,
spaces
,
**
kwargs
)
def
_times
(
self
,
x
,
spaces
):
raise
NotImplementedError
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment