Skip to content

Commit 0ff83e2

Browse files
committed
fixes error in last commit
1 parent 99a02d7 commit 0ff83e2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/analysis.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,14 @@ function get_AttributeRanking(a::approx)::Dict{Float64,Vector{Float64}}
8888
end
8989

9090
function get_ActiveSet( a::approx, eps::Vector{Float64}, λ::Float64 )::Vector{Vector{Int}}
91+
U = a.U[2:end]
9192
lengths = [ length(u) for u in U ]
9293
ds = maximum(lengths)
9394

9495
if length(eps) != ds
9596
error( "Entries in vector eps have to be ds.")
9697
end
9798

98-
U = a.U[2:end]
9999
gsi = get_GSI(a, λ)
100100

101101
n = 0

0 commit comments

Comments
 (0)