From b23986e41c6b657880fd529d9a412d2df280dbf5 Mon Sep 17 00:00:00 2001 From: Tommy Hofmann Date: Wed, 18 Sep 2024 14:30:52 +0200 Subject: [PATCH] fix: typo in coprime base --- src/algorithms/coprime_base.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/algorithms/coprime_base.jl b/src/algorithms/coprime_base.jl index ecc9da08f..796402a85 100644 --- a/src/algorithms/coprime_base.jl +++ b/src/algorithms/coprime_base.jl @@ -53,7 +53,7 @@ function coprime_base(S::Vector{E}) where {E <: RingElement} return coprime_base_steel(S) end -function coprime_base_steel(S::Vector) +function coprime_base_steel(S::Vector{E}) where {E} @assert !isempty(S) T = Array{E}(undef, 1) T[1] = S[1]