-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9bbb27e
commit 0724321
Showing
4 changed files
with
7 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
using BSplineKit | ||
using PoissonSolvers | ||
using PoissonSolvers: evalsolution | ||
using Test | ||
|
||
nknot = 32 | ||
order = 5 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
using PoissonSolvers | ||
using PoissonSolvers: nearest_index, nearest_indices | ||
using Test | ||
|
||
ngrid = 64 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,4 @@ | ||
using PoissonSolvers | ||
using Test | ||
using SafeTestsets | ||
|
||
@testset "PoissonSolvers.jl" begin | ||
@testset "FFT Solvers" begin | ||
include("fft_tests.jl") | ||
end | ||
@testset "BSplineKit Solvers" begin | ||
include("bsplinekit_tests.jl") | ||
end | ||
end | ||
@safetestset "FFT Solvers " begin include("fft_tests.jl") end | ||
@safetestset "BSplineKit Solvers " begin include("bsplinekit_tests.jl") end |