We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This line implicitly assumes that A is a LinearOperator
A
LinearOperator
scico/scico/loss.py
Line 195 in 2b7a693
__init__
Line 124 in 2b7a693
adj
The prox method needs some additional checking to ensure that A is a LinearOperator, raising an exception if it is not.
prox
The text was updated successfully, but these errors were encountered:
Good catch. I'll fix it
Sorry, something went wrong.
tbalke
Successfully merging a pull request may close this issue.
This line implicitly assumes that
A
is aLinearOperator
scico/scico/loss.py
Line 195 in 2b7a693
but according to the typing on the
A
parameter of the class__init__
,scico/scico/loss.py
Line 124 in 2b7a693
A
may also be a function, which does not have anadj
method.The
prox
method needs some additional checking to ensure thatA
is aLinearOperator
, raising an exception if it is not.The text was updated successfully, but these errors were encountered: