Skip to content

Commit

Permalink
test(fix): remove unneeded testset
Browse files Browse the repository at this point in the history
  • Loading branch information
Nimrais committed Sep 25, 2024
1 parent dfd917a commit 3812a9b
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -220,11 +220,9 @@ end
# small time is supposed to be O(k) and full time is supposed to O(k^2)
# the constant C is selected to account to fluctuations in test runs
C = 0.9
@testset "k = $k"
@test fi_mvsp_time < fi_full_time/(C*k)
@test fi_mvsp_alloc < fi_full_alloc/(C*k)
@test cholinv_time_small < cholinv_time_full/(C*k)
@test cholinv_alloc_small < cholinv_alloc_full/(C*k)
end
@test fi_mvsp_time < fi_full_time/(C*k)
@test fi_mvsp_alloc < fi_full_alloc/(C*k)
@test cholinv_time_small < cholinv_time_full/(C*k)
@test cholinv_alloc_small < cholinv_alloc_full/(C*k)
end
end

0 comments on commit 3812a9b

Please sign in to comment.