Skip to content
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

v1.0.0: Add RCpair copy! for complex. Rename region->dims. Remove deprecation. #17

Merged
merged 9 commits into from
Apr 29, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
version bump
IanButterworth committed Mar 11, 2024
commit cc803725e8487698fe79ed3e784543a74a57b3c7
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "RFFT"
uuid = "3bd9afcd-55df-531a-9b34-dc642dce7b95"
authors = ["Tim Holy <tim.holy@gmail.com>"]
version = "0.1.0"
version = "0.1.1"

[deps]
FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341"

Unchanged files with check annotations Beta

real(RC::RCpair) = RC.R
complex(RC::RCpair) = RC.C
copy!(RC::RCpair, A::AbstractArray{T}) where {T<:Complex} = (copy!(RC.C, A); RC)

Check warning on line 31 in src/RFFT.jl

Codecov / codecov/patch

src/RFFT.jl#L31

Added line #L31 was not covered by tests
copy!(RC::RCpair, A::AbstractArray{T}) where {T<:Real} = (copy!(RC.R, A); RC)
function copy(RC::RCpair{T,N}) where {T,N}
C = copy(RC.C)