You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, if you want to change LargestMCUSize, you have to define ϵ to reach the position of this variable in the list. This is nonsense, since Julia allows the use of semicolon to divide input parameters into main and additional (see https://docs.julialang.org/en/v1/manual/functions/#Keyword-Arguments). Previous function should have been defined as
Functions such as (e.g.)
DetectAnomalies_SelfConsis
need that input data are provided by means of a long list, so several modes are defined:DetectAnomalies_SelfConsis(DATA::Matrix{UInt32}, WordWidth::Int64, LN0::Int64, Operation::String, UsePseudoADD::Bool, KeepCycle::Bool, ϵ::AbstractFloat, LargestMCUSize::Int64
)but also:
DetectAnomalies_SelfConsis(DATA::Matrix{UInt32}, WordWidth::Int64, LN0::Int64, Operation::String, UsePseudoADD::Bool, KeepCycle::Bool)
So, if you want to change
LargestMCUSize
, you have to defineϵ
to reach the position of this variable in the list. This is nonsense, since Julia allows the use of semicolon to divide input parameters into main and additional (see https://docs.julialang.org/en/v1/manual/functions/#Keyword-Arguments). Previous function should have been defined asDetectAnomalies_SelfConsis(DATA::Matrix{UInt32}, WordWidth::Int64, LN0::Int64, Operation::String, UsePseudoADD::Bool, KeepCycle::Bool; ϵ::AbstractFloat, LargestMCUSize::Int64
)`A new method with this feature should be added at least to the exported functions.
The text was updated successfully, but these errors were encountered: