Skip to content

Commit 8d9dbde

Browse files
authored
Merge pull request #271 from FourierFlows/ncc/reexport-fftw-common-functions
Reexport basic functionality from other packages
2 parents 0fe2825 + 1be5717 commit 8d9dbde

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Gregory L. Wagner <wagner.greg@gmail.com>", "Navid C. Constantinou <
66
description = "Tools for building fast, hackable, pseudospectral partial differential equation solvers on periodic domains."
77
documentation = "https://fourierflows.github.io/FourierFlowsDocumentation/stable/"
88
repository = "https://github.com/FourierFlows/FourierFlows.jl"
9-
version = "0.6.16"
9+
version = "0.6.17"
1010

1111
[deps]
1212
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ and [Navid C. Constantinou][] (@navidcy).
9191

9292
The code is citable via [zenodo](https://zenodo.org). Please cite as:
9393

94-
> Navid C. Constantinou & Gregory L. Wagner. (2021). FourierFlows/FourierFlows.jl: FourierFlows v0.6.16 (Version v0.6.16). Zenodo. [http://doi.org/10.5281/zenodo.1161724](http://doi.org/10.5281/zenodo.1161724)
94+
> Navid C. Constantinou & Gregory L. Wagner. (2021). FourierFlows/FourierFlows.jl: FourierFlows v0.6.17 (Version v0.6.17). Zenodo. [http://doi.org/10.5281/zenodo.1161724](http://doi.org/10.5281/zenodo.1161724)
9595
9696

9797
[Julia]: https://julialang.org/

examples/OneDShallowWaterGeostrophicAdjustment.jl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,8 @@
3232
# balance with the pressure gradient ``-g \bm{\nabla} \eta``.
3333

3434

35-
using FourierFlows, Plots
36-
using FFTW: rfft, irfft
35+
using FourierFlows, Plots, Printf, Random
3736
using LinearAlgebra: mul!, ldiv!
38-
using Printf
39-
using Random
4037

4138
# ## Coding up the equations
4239
# ### A demonstration of FourierFlows.jl framework

src/FourierFlows.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,12 @@ using
6868
JLD2,
6969
Statistics,
7070
Interpolations,
71-
CUDA,
71+
Reexport,
7272
DocStringExtensions
7373

74+
@reexport using FFTW: fft, ifft, rfft, irfft
75+
@reexport using CUDA
76+
7477
import Base: resize!, getindex, setindex!, push!, append!, show, summary
7578

7679
using Base: fieldnames

0 commit comments

Comments
 (0)