Skip to content

Commit

Permalink
fixes error in last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mischmi96 committed Nov 29, 2021
1 parent 99a02d7 commit 0ff83e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analysis.jl
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,14 @@ function get_AttributeRanking(a::approx)::Dict{Float64,Vector{Float64}}
end

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

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

U = a.U[2:end]
gsi = get_GSI(a, λ)

n = 0
Expand Down

2 comments on commit 0ff83e2

@mischmi96
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register branch=main

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/49548

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.1.5 -m "<description of version>" 0ff83e200a3b662eeda4d2934e29eda3fec434c0
git push origin v1.1.5

Please sign in to comment.