Skip to content

Commit

Permalink
bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
PBrdng committed May 24, 2024
1 parent becc197 commit 9fb6d91
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/numerical_irreducible_decomposition.jl
Original file line number Diff line number Diff line change
Expand Up @@ -452,8 +452,11 @@ function regeneration!(
sing_cond = 1e12,
),
threading::Bool = true,
seed = rand(UInt32),
seed = nothing,
)
if isnothing(seed)
seed = rand(UInt32)

Check warning on line 458 in src/numerical_irreducible_decomposition.jl

View check run for this annotation

Codecov / codecov/patch

src/numerical_irreducible_decomposition.jl#L457-L458

Added lines #L457 - L458 were not covered by tests
end

# the algorithm is u-regeneration as proposed
# by Duff, Leykin and Rodriguez in https://arxiv.org/abs/2206.02869
Expand Down

0 comments on commit 9fb6d91

Please sign in to comment.