-
Notifications
You must be signed in to change notification settings - Fork 39
Fix Conjugate Operator and test all adjoint/transpose/conjugate operations #117
New issue
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
Fix Conjugate Operator and test all adjoint/transpose/conjugate operations #117
Conversation
Codecov Report
@@ Coverage Diff @@
## master #117 +/- ##
==========================================
+ Coverage 94.44% 96.58% +2.14%
==========================================
Files 6 6
Lines 522 527 +5
==========================================
+ Hits 493 509 +16
+ Misses 29 18 -11
Continue to review full report at Codecov.
|
3719b60 to
9ead579
Compare
9ead579 to
8075150
Compare
src/adjtrans.jl
Outdated
|
|
||
| function *(op :: ConjugateLinearOperator, v :: AbstractVector) | ||
| p = op.parent | ||
| return conj.(p * v) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line is buggy too. It should be conj.(p * conj.(v)).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed and added a test.
8075150 to
d11df69
Compare
|
Thank you! |
Blocked by #115 and #116