-
Notifications
You must be signed in to change notification settings - Fork 5
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
Added SeisCon copy function #17
Conversation
Fix undef access
This function is required by JUDI's judiVector: https://github.com/slimgroup/JUDI.jl/blob/16aa54abc9e1a18d8bd59636895afbd90718b0b7/src/TimeModeling/Types/judiVector.jl#L156
SegyIO doesn't export `copy` anymore but extends `Base.copy`
Seems to be fixed and working |
it seems even with this copy function added JUDI still doesn't want to work with SeisCon and filter: |
That's an issue for JUDI. THis isn't implemented it is currently only supporting in core.
|
This function is required by JUDI's judiVector:
https://github.com/slimgroup/JUDI.jl/blob/16aa54abc9e1a18d8bd59636895afbd90718b0b7/src/TimeModeling/Types/judiVector.jl#L156
This is going to solve the issue: slimgroup/JUDI.jl#181 (comment)
Nevertheless it is not possible to use this function as
copy(con)
because of the following warning:It should be used as
SegyIO.copy(con)
.Most likely JUDI's judiVector should be edited in appropriate way.