From 829567a88151f1a5261e8d799242c2df570b2e89 Mon Sep 17 00:00:00 2001 From: yonatanwesen Date: Mon, 6 Nov 2023 16:20:34 -0500 Subject: [PATCH 1/2] test PT on 23 test problems --- test/23_test_problems.jl | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/23_test_problems.jl b/test/23_test_problems.jl index 72843c42e..e5d311e85 100644 --- a/test/23_test_problems.jl +++ b/test/23_test_problems.jl @@ -101,3 +101,12 @@ end test_on_library(problems, dicts, alg_ops, broken_tests) end + +@testset "PseudoTransient 23 Test Problems" begin + alg_ops = (PseudoTransient(;alpha_initial = 10.0),) + + broken_tests = Dict(alg => Int[] for alg in alg_ops) + broken_tests[alg_ops[1]] = [1, 6,9,18,21,22] + + test_on_library(problems, dicts, alg_ops, broken_tests) +end \ No newline at end of file From 28c213704427439d92588950edf0295a8dd73661 Mon Sep 17 00:00:00 2001 From: yonatanwesen Date: Tue, 7 Nov 2023 12:12:11 -0500 Subject: [PATCH 2/2] ran the formatter --- test/23_test_problems.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/23_test_problems.jl b/test/23_test_problems.jl index e5d311e85..cc115a1a5 100644 --- a/test/23_test_problems.jl +++ b/test/23_test_problems.jl @@ -103,10 +103,10 @@ end end @testset "PseudoTransient 23 Test Problems" begin - alg_ops = (PseudoTransient(;alpha_initial = 10.0),) + alg_ops = (PseudoTransient(; alpha_initial = 10.0),) broken_tests = Dict(alg => Int[] for alg in alg_ops) - broken_tests[alg_ops[1]] = [1, 6,9,18,21,22] + broken_tests[alg_ops[1]] = [1, 6, 9, 18, 21, 22] test_on_library(problems, dicts, alg_ops, broken_tests) -end \ No newline at end of file +end