From 482d7d0f5c580d5bda38f2641e3e48020af04272 Mon Sep 17 00:00:00 2001 From: Christoph Ortner Date: Sat, 20 Jul 2024 10:15:22 -0700 Subject: [PATCH 1/2] switch version to 0.0.1 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 75a66ed..207fcfe 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "ActiveSetPursuit" uuid = "d86c1dc8-ba26-4c98-b330-3a8efc174d20" authors = ["tinatorabi and contributors"] -version = "1.0.0" +version = "0.0.1" [deps] DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" From 76ef75cf498a6af0e7124de49abd5dbc26906d39 Mon Sep 17 00:00:00 2001 From: Christoph Ortner Date: Sat, 20 Jul 2024 10:21:35 -0700 Subject: [PATCH 2/2] add seed to tests --- test/test_bpdn.jl | 1 + test/test_recover_decaying.jl | 1 + 2 files changed, 2 insertions(+) diff --git a/test/test_bpdn.jl b/test/test_bpdn.jl index 47a11ef..106b597 100644 --- a/test/test_bpdn.jl +++ b/test/test_bpdn.jl @@ -42,6 +42,7 @@ function test_bpdn() @test pFeas_op <= 1e-6 end +Random.seed!(1234) for ntest = 1:10 test_bpdn() diff --git a/test/test_recover_decaying.jl b/test/test_recover_decaying.jl index 0c3d516..687a632 100644 --- a/test/test_recover_decaying.jl +++ b/test/test_recover_decaying.jl @@ -41,6 +41,7 @@ function test_recover_decaying() @test values_correct end +Random.seed!(1234) for ntest = 1:10 test_recover_decaying()