awelkie / RustFFT

A mixed-radix FFT library written in pure Rust
Apache License 2.0
189 stars 18 forks source link

Changes for 2.0 #19

Closed ejmahler closed 7 years ago

awelkie commented 7 years ago

Yeah, I tried this last night. The problem is that it doesn't actually make Arc<FFT> Sync because FFT isn't Sync. The solution is to add + Send + Sync to the FFT trait. I did that in the change_rc_to_arc branch. I'll merge this PR into that branch (since this brings some documentation changes), and I'll open a new PR.

ejmahler commented 7 years ago

superseded by #20