Skip to content

Commit

Permalink
Add SimplInit also to the correctness.jl tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanaelbosch committed Nov 6, 2023
1 parent 0026f24 commit 8cf60bc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/correctness.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ CONSTANT_ALGS = (
EK0(order=3, smooth=false, diffusionmodel=FixedMVDiffusion()) => 1e-7,
EK0(order=3, smooth=false, diffusionmodel=DynamicMVDiffusion()) => 1e-8,
EK0(order=3, smooth=false, initialization=ClassicSolverInit()) => 1e-7,
EK0(order=3, smooth=false, initialization=SimpleInit()) => 1e-5,
EK0(
order=3,
smooth=false,
Expand All @@ -28,6 +29,7 @@ CONSTANT_ALGS = (
EK1(order=5, smooth=false) => 1e-11,
EK1(order=3, smooth=false, diffusionmodel=FixedDiffusion()) => 1e-8,
EK1(order=3, smooth=false, initialization=ClassicSolverInit()) => 1e-7,
EK1(order=3, smooth=false, initialization=SimpleInit()) => 1e-5,
# smoothing
EK0(order=3, smooth=true) => 1e-8,
EK0(order=3, smooth=true, diffusionmodel=FixedDiffusion()) => 2e-8,
Expand All @@ -43,12 +45,14 @@ ADAPTIVE_ALGS = (
EK0(order=8) => 2e-5,
EK0(order=3, diffusionmodel=DynamicMVDiffusion()) => 5e-5,
EK0(order=3, initialization=ClassicSolverInit()) => 5e-5,
EK0(order=3, initialization=SimpleInit()) => 1e-4,
EK0(order=3, diffusionmodel=DynamicMVDiffusion(), initialization=ClassicSolverInit()) => 4e-5,
EK1(order=2) => 2e-5,
EK1(order=3) => 1e-5,
EK1(order=5) => 1e-6,
EK1(order=8) => 5e-6,
EK1(order=3, initialization=ClassicSolverInit()) => 1e-5,
EK1(order=3, initialization=SimpleInit()) => 1e-4,
)

PROBS = (
Expand Down

0 comments on commit 8cf60bc

Please sign in to comment.