Package evaluation to load GenericArpack on Julia 1.14.0-DEV.2593 (15c2b67521*) started at 2026-07-03T14:11:57.575 ################################################################################ # Set-up # Set-up completed after 0.15s ################################################################################ # Installation # Installing GenericArpack... Resolving package versions... Installed GenericArpack ─ v0.2.1 Updating `~/.julia/environments/v1.14/Project.toml` [408c25d7] + GenericArpack v0.2.1 Updating `~/.julia/environments/v1.14/Manifest.toml` [408c25d7] + GenericArpack v0.2.1 [56f22d72] + Artifacts v1.11.0 [8f399da3] + Libdl v1.11.0 [37e2e46d] + LinearAlgebra v1.14.0 [e66e0078] + CompilerSupportLibraries_jll v1.5.5+2 [4536629a] + OpenBLAS_jll v0.3.33+0 [8e850b90] + libblastrampoline_jll v5.15.0+0 Installation completed after 4.76s ################################################################################ # Precompilation # Precompiling PkgEval dependencies... Project No packages added to or removed from `~/.julia/environments/pkgeval/Project.toml` Manifest No packages added to or removed from `~/.julia/environments/pkgeval/Manifest.toml` Precompiling package dependencies... Precompiling project... ┌ Info: JuliaLowering threw given input: │ code = │ :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:224 =# Core.@doc "Sort the array X1 in the order specified by WHICH and optionally\napplies the permutation to the array X2.\n\nUsage:\ncall dsortr\n ( WHICH, APPLY, N, X1, X2 )\n\nArguments\nWHICH Character*2. (Input)\n 'LM' -> X1 is sorted into increasing order of magnitude.\n 'SM' -> X1 is sorted into decreasing order of magnitude.\n 'LA' -> X1 is sorted into increasing order of algebraic.\n 'SA' -> X1 is sorted into decreasing order of algebraic.\n\nAPPLY Logical. (Input)\n APPLY = .TRUE. -> apply the sorted order to X2.\n APPLY = .FALSE. -> do not apply the sorted order to X2.\n\nN Integer. (INPUT)\n Size of the arrays.\n\nX1 Double precision array of length N. (INPUT/OUTPUT)\n The array to be sorted.\n\nX2 Double precision array of length N. (INPUT/OUTPUT)\n Only referenced if APPLY = .TRUE.\n\nReturns: nothing\n\n" function dsortr(which::Symbol, apply::Bool, n::Int, x1::AbstractVector{T}, x2::AbstractVecOrMat) where T <: AbstractFloat │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:255 =# │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:263 =# │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:263 =# @jl_arpack_check_length x1 n │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:264 =# │ if apply │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:265 =# │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:265 =# @jl_arpack_check_length x2 n │ end │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:270 =# │ if which == :SA │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:271 =# │ _dsortr_loop(((x::T, y::T)->begin │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:271 =# │ x < y │ end), apply, n, x1, x2) │ elseif #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:272 =# which == :SM │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:273 =# │ _dsortr_loop(((x::T, y::T)->begin │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:273 =# │ abs(x) < abs(y) │ end), apply, n, x1, x2) │ elseif #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:274 =# which == :LA │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:275 =# │ _dsortr_loop(((x::T, y::T)->begin │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:275 =# │ x > y │ end), apply, n, x1, x2) │ elseif #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:276 =# which == :LM │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:277 =# │ _dsortr_loop(((x::T, y::T)->begin │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:277 =# │ abs(x) > abs(y) │ end), apply, n, x1, x2) │ end │ end) │ st0 = │ SyntaxTree with attributes mod,kind,var_id,toplevel_pure,scope_type,context,syntax_flags,name_val,meta,value,jl_source,is_toplevel_thunk,source │ [macrocall] | │ @doc :: Identifier | mod=Core │ :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:224 =#) :: Value | │ "Sort the array X1 in the order specified by WHICH and optionally\napplies the permutation to the array X2.\n\nUsage:\ncall dsortr\n ( WHICH, APPLY, N, X1, X2 )\n\nArguments\nWHICH Character*2. (Input)\n 'LM' -> X1 is sorted into increasing order of magnitude.\n 'SM' -> X1 is sorted into decreasing order of magnitude.\n 'LA' -> X1 is sorted into increasing order of algebraic.\n 'SA' -> X1 is sorted into decreasing order of algebraic.\n\nAPPLY Logical. (Input)\n APPLY = .TRUE. -> apply the sorted order to X2.\n APPLY = .FALSE. -> do not apply the sorted order to X2.\n\nN Integer. (INPUT)\n Size of the arrays.\n\nX1 Double precision array of length N. (INPUT/OUTPUT)\n The array to be sorted.\n\nX2 Double precision array of length N. (INPUT/OUTPUT)\n Only referenced if APPLY = .TRUE.\n\nReturns: nothing\n\n" :: Value | │ [function] | │ [where] | │ [call] | │ dsortr :: Identifier | │ [::] | │ which :: Identifier | │ Symbol :: Identifier | │ [::] | │ apply :: Identifier | │ Bool :: Identifier | │ [::] | │ n :: Identifier | │ Int :: Identifier | │ [::] | │ x1 :: Identifier | │ [curly] | │ AbstractVector :: Identifier | │ T :: Identifier | │ [::] | │ x2 :: Identifier | │ AbstractVecOrMat :: Identifier | │ [<:] | │ T :: Identifier | │ AbstractFloat :: Identifier | │ [block] | │ [macrocall] | │ @jl_arpack_check_length :: Identifier | │ :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:263 =#) :: Value | │ x1 :: Identifier | │ n :: Identifier | │ [if] | │ apply :: Identifier | │ [block] | │ [macrocall] | │ @jl_arpack_check_length :: Identifier | │ :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:265 =#) :: Value | │ x2 :: Identifier | │ n :: Identifier | │ [if] | │ [call] | │ == :: Identifier | │ which :: Identifier | │ [inert] | │ SA :: Identifier | │ [block] | │ [call] | │ _dsortr_loop :: Identifier | │ [->] | │ [tuple] | │ [::] | │ x :: Identifier | │ T :: Identifier | │ [::] | │ y :: Identifier | │ T :: Identifier | │ [block] | │ [call] | │ < :: Identifier | │ x :: Identifier | │ y :: Identifier | │ apply :: Identifier | │ n :: Identifier | │ x1 :: Identifier | │ x2 :: Identifier | │ [elseif] | │ [block] | │ [call] | │ == :: Identifier | │ which :: Identifier | │ [inert] | │ SM :: Identifier | │ [block] | │ [call] | │ _dsortr_loop :: Identifier | │ [->] | │ [tuple] | │ [::] | │ x :: Identifier | │ T :: Identifier | │ [::] | │ y :: Identifier | │ T :: Identifier | │ [block] | │ [call] | │ < :: Identifier | │ [call] | │ abs :: Identifier | │ x :: Identifier | │ [call] | │ abs :: Identifier | │ y :: Identifier | │ apply :: Identifier | │ n :: Identifier | │ x1 :: Identifier | │ x2 :: Identifier | │ [elseif] | │ [block] | │ [call] | │ == :: Identifier | │ which :: Identifier | │ [inert] | │ LA :: Identifier | │ [block] | │ [call] | │ _dsortr_loop :: Identifier | │ [->] | │ [tuple] | │ [::] | │ x :: Identifier | │ T :: Identifier | │ [::] | │ y :: Identifier | │ T :: Identifier | │ [block] | │ [call] | │ > :: Identifier | │ x :: Identifier | │ y :: Identifier | │ apply :: Identifier | │ n :: Identifier | │ x1 :: Identifier | │ x2 :: Identifier | │ [elseif] | │ [block] | │ [call] | │ == :: Identifier | │ which :: Identifier | │ [inert] | │ LM :: Identifier | │ [block] | │ [call] | │ _dsortr_loop :: Identifier | │ [->] | │ [tuple] | │ [::] | │ x :: Identifier | │ T :: Identifier | │ [::] | │ y :: Identifier | │ T :: Identifier | │ [block] | │ [call] | │ > :: Identifier | │ [call] | │ abs :: Identifier | │ x :: Identifier | │ [call] | │ abs :: Identifier | │ y :: Identifier | │ apply :: Identifier | │ n :: Identifier | │ x1 :: Identifier | │ x2 :: Identifier | │ │ st1 = │ SyntaxTree with attributes mod,kind,var_id,toplevel_pure,scope_type,context,syntax_flags,name_val,meta,value,jl_source,is_toplevel_thunk,source │ [block] | [old,SL(48snabYXeYC,Base.Docs,SL(ALyWK7hIgBC,GenericArpack,)),@doc], │ [if] | [old,SL(48snabYXeYC,Base.Docs,SL(ALyWK7hIgBC,GenericArpack,)),@doc], │ true :: Value | [old,SL(48snabYXeYC,Base.Docs,SL(ALyWK7hIgBC,GenericArpack,)),@doc], │ [=] | [old,SL(48snabYXeYC,Base.Docs,SL(ALyWK7hIgBC,GenericArpack,)),@doc], │ val :: Identifier | [old,SL(48snabYXeYC,Base.Docs,SL(ALyWK7hIgBC,GenericArpack,)),@doc], │ [function] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [where] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ dsortr :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [::] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ which :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ Symbol :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [::] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ apply :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ Bool :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [::] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ n :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ Int :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [::] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x1 :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [curly] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ AbstractVector :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ T :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [::] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x2 :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ AbstractVecOrMat :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [<:] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ T :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ AbstractFloat :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [block] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [block] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [if] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ > :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ n :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ length :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x1 :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [block] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ throw :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ ArgumentError :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ string :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ "range 1:n=" :: Value | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ n :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ " out of bounds for x1 of length " :: Value | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ length :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x1 :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [if] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ apply :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [block] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [block] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [if] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ > :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ n :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ length :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x2 :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [block] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ throw :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ ArgumentError :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ string :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ "range 1:n=" :: Value | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ n :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ " out of bounds for x2 of length " :: Value | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ length :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x2 :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [if] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ == :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ which :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [inert] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ SA :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [block] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ _dsortr_loop :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [->] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [tuple] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [::] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ T :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [::] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ y :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ T :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [block] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ < :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ y :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ apply :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ n :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x1 :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x2 :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [elseif] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [block] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ == :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ which :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [inert] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ SM :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [block] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ _dsortr_loop :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [->] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [tuple] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [::] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ T :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [::] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ y :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ T :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [block] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ < :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ abs :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ abs :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ y :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ apply :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ n :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x1 :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x2 :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [elseif] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [block] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ == :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ which :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [inert] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ LA :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [block] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ _dsortr_loop :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [->] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [tuple] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [::] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ T :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [::] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ y :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ T :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [block] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ > :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ y :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ apply :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ n :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x1 :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x2 :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [elseif] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [block] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ == :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ which :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [inert] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ LM :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [block] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ _dsortr_loop :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [->] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [tuple] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [::] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ T :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [::] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ y :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ T :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [block] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ > :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ abs :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ abs :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ y :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ apply :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ n :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x1 :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ x2 :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(48snabYXeYC,Base.Docs,SL(ALyWK7hIgBC,GenericArpack,)),@doc], │ Base.Docs.doc! :: Value | [old,SL(48snabYXeYC,Base.Docs,SL(ALyWK7hIgBC,GenericArpack,)),@doc], │ GenericArpack :: Value | [old,SL(48snabYXeYC,Base.Docs,SL(ALyWK7hIgBC,GenericArpack,)),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ Base.Docs.Binding :: Value | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ GenericArpack :: Value | [old,SL(JSq5leyprdA,Base,SL(ALyWK7hIgBC,GenericArpack,)),(. Base (inert @__MODULE__))], │ [inert] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc],jl_source=L47 │ dsortr :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ Base.Docs.docstr :: Value | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ Core.svec :: Value | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ "Sort the array X1 in the order specified by WHICH and optionally\napplies the permutation to the array X2.\n\nUsage:\ncall dsortr\n ( WHICH, APPLY, N, X1, X2 )\n\nArguments\nWHICH Character*2. (Input)\n 'LM' -> X1 is sorted into increasing order of magnitude.\n 'SM' -> X1 is sorted into decreasing order of magnitude.\n 'LA' -> X1 is sorted into increasing order of algebraic.\n 'SA' -> X1 is sorted into decreasing order of algebraic.\n\nAPPLY Logical. (Input)\n APPLY = .TRUE. -> apply the sorted order to X2.\n APPLY = .FALSE. -> do not apply the sorted order to X2.\n\nN Integer. (INPUT)\n Size of the arrays.\n\nX1 Double precision array of length N. (INPUT/OUTPUT)\n The array to be sorted.\n\nX2 Double precision array of length N. (INPUT/OUTPUT)\n Only referenced if APPLY = .TRUE.\n\nReturns: nothing\n\n" :: Value | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [call] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ Dict{Symbol, Any} :: Value | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ :path => "/home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl" :: Value | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ :linenumber => 224 :: Value | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ :module => GenericArpack :: Value | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [where] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [curly] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ Union :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [curly] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ Tuple :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ Symbol :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ Bool :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ Int :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [curly] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ AbstractVector :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ T :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ AbstractVecOrMat :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [curly] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ Tuple :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ T :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [<:] | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ T :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ AbstractFloat :: Identifier | [old,SL(ALyWK7hIgBC,GenericArpack,),@doc], │ [if] | [old,SL(48snabYXeYC,Base.Docs,SL(ALyWK7hIgBC,GenericArpack,)),@doc], │ true :: Value | [old,SL(48snabYXeYC,Base.Docs,SL(ALyWK7hIgBC,GenericArpack,)),@doc], │ val :: Identifier | [old,SL(48snabYXeYC,Base.Docs,SL(ALyWK7hIgBC,GenericArpack,)),@doc], │ │ file = "/home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl" │ line = 224 └ mod = GenericArpack ERROR: LoadError: LoweringError: #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:271 =# - Found unexpected binding of kind static_parameter Expression:  #₂₃/T Containing expressions:  (= #₆₇/T #₂₃/T)  (= #₃ (call core.svec (call core.svec #₅₂/#dsortr##->###0 #₂₃/T #₂₃/T) (call core.svec) SourceLocation:/home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:271:0))  (= #₃ (call core.svec (call core.svec (function_type #₂₄/#->#) #₂₃/T #₂₃/T) (call core.svec) SourceLocation:/home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:271:0))  Detailed provenance:  #₂₃/T  ├─ T  │ ├─ T  │ │ └─ @ /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:271  │ └─ (macrocall @doc :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:224 =#) "Sort the array X1 in the order specified by WHICH and optionally\napplies the permutation to the array X2.\n\nUsage:\ncall dsortr\n ( WHICH, APPLY, N, X1, X2 )\n\nArguments\nWHICH Character*2. (Input)\n 'LM' -> X1 is sorted into increasing order of magnitude.\n 'SM' -> X1 is sorted into decreasing order of magnitude.\n 'LA' -> X1 is sorted into increasing order of algebraic.\n 'SA' -> X1 is sorted into decreasing order of algebraic.\n\nAPPLY Logical. (Input)\n APPLY = .TRUE. -> apply the sorted order to X2.\n APPLY = .FALSE. -> do not apply the sorted order to X2.\n\nN Integer. (INPUT)\n Size of the arrays.\n\nX1 Double precision array of length N. (INPUT/OUTPUT)\n The array to be sorted.\n\nX2 Double precision array of length N. (INPUT/OUTPUT)\n Only referenced if APPLY = .TRUE.\n\nReturns: nothing\n\n" (function (where (call dsortr (:: which Symbol) (:: apply Bool) (:: n Int) (:: x1 (curly AbstractVector T)) (:: x2 AbstractVecOrMat)) (<: T AbstractFloat)) (block (macrocall @jl_arpack_check_length :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:263 =#) x1 n) (if apply (block (macrocall @jl_arpack_check_length :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:265 =#) x2 n))) (if (call == which (inert SA)) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call < x y))) apply n x1 x2)) (elseif (block (call == which (inert SM))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call < (call abs x) (call abs y)))) apply n x1 x2)) (elseif (block (call == which (inert LA))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call > x y))) apply n x1 x2)) (elseif (block (call == which (inert LM))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call > (call abs x) (call abs y)))) apply n x1 x2)))))))))  │ └─ (macrocall @doc :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:224 =#) "Sort the array X1 in the order specified by WHICH and optionally\napplies the permutation to the array X2.\n\nUsage:\ncall dsortr\n ( WHICH, APPLY, N, X1, X2 )\n\nArguments\nWHICH Character*2. (Input)\n 'LM' -> X1 is sorted into increasing order of magnitude.\n 'SM' -> X1 is sorted into decreasing order of magnitude.\n 'LA' -> X1 is sorted into increasing order of algebraic.\n 'SA' -> X1 is sorted into decreasing order of algebraic.\n\nAPPLY Logical. (Input)\n APPLY = .TRUE. -> apply the sorted order to X2.\n APPLY = .FALSE. -> do not apply the sorted order to X2.\n\nN Integer. (INPUT)\n Size of the arrays.\n\nX1 Double precision array of length N. (INPUT/OUTPUT)\n The array to be sorted.\n\nX2 Double precision array of length N. (INPUT/OUTPUT)\n Only referenced if APPLY = .TRUE.\n\nReturns: nothing\n\n" (function (where (call dsortr (:: which Symbol) (:: apply Bool) (:: n Int) (:: x1 (curly AbstractVector T)) (:: x2 AbstractVecOrMat)) (<: T AbstractFloat)) (block (macrocall @jl_arpack_check_length :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:263 =#) x1 n) (if apply (block (macrocall @jl_arpack_check_length :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:265 =#) x2 n))) (if (call == which (inert SA)) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call < x y))) apply n x1 x2)) (elseif (block (call == which (inert SM))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call < (call abs x) (call abs y)))) apply n x1 x2)) (elseif (block (call == which (inert LA))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call > x y))) apply n x1 x2)) (elseif (block (call == which (inert LM))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call > (call abs x) (call abs y)))) apply n x1 x2)))))))))  │ └─ @ /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:224  └─ (macrocall @doc :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:224 =#) "Sort the array X1 in the order specified by WHICH and optionally\napplies the permutation to the array X2.\n\nUsage:\ncall dsortr\n ( WHICH, APPLY, N, X1, X2 )\n\nArguments\nWHICH Character*2. (Input)\n 'LM' -> X1 is sorted into increasing order of magnitude.\n 'SM' -> X1 is sorted into decreasing order of magnitude.\n 'LA' -> X1 is sorted into increasing order of algebraic.\n 'SA' -> X1 is sorted into decreasing order of algebraic.\n\nAPPLY Logical. (Input)\n APPLY = .TRUE. -> apply the sorted order to X2.\n APPLY = .FALSE. -> do not apply the sorted order to X2.\n\nN Integer. (INPUT)\n Size of the arrays.\n\nX1 Double precision array of length N. (INPUT/OUTPUT)\n The array to be sorted.\n\nX2 Double precision array of length N. (INPUT/OUTPUT)\n Only referenced if APPLY = .TRUE.\n\nReturns: nothing\n\n" (function (where (call dsortr (:: which Symbol) (:: apply Bool) (:: n Int) (:: x1 (curly AbstractVector T)) (:: x2 AbstractVecOrMat)) (<: T AbstractFloat)) (block (macrocall @jl_arpack_check_length :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:263 =#) x1 n) (if apply (block (macrocall @jl_arpack_check_length :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:265 =#) x2 n))) (if (call == which (inert SA)) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call < x y))) apply n x1 x2)) (elseif (block (call == which (inert SM))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call < (call abs x) (call abs y)))) apply n x1 x2)) (elseif (block (call == which (inert LA))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call > x y))) apply n x1 x2)) (elseif (block (call == which (inert LM))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call > (call abs x) (call abs y)))) apply n x1 x2)))))))))  └─ (macrocall @doc :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:224 =#) "Sort the array X1 in the order specified by WHICH and optionally\napplies the permutation to the array X2.\n\nUsage:\ncall dsortr\n ( WHICH, APPLY, N, X1, X2 )\n\nArguments\nWHICH Character*2. (Input)\n 'LM' -> X1 is sorted into increasing order of magnitude.\n 'SM' -> X1 is sorted into decreasing order of magnitude.\n 'LA' -> X1 is sorted into increasing order of algebraic.\n 'SA' -> X1 is sorted into decreasing order of algebraic.\n\nAPPLY Logical. (Input)\n APPLY = .TRUE. -> apply the sorted order to X2.\n APPLY = .FALSE. -> do not apply the sorted order to X2.\n\nN Integer. (INPUT)\n Size of the arrays.\n\nX1 Double precision array of length N. (INPUT/OUTPUT)\n The array to be sorted.\n\nX2 Double precision array of length N. (INPUT/OUTPUT)\n Only referenced if APPLY = .TRUE.\n\nReturns: nothing\n\n" (function (where (call dsortr (:: which Symbol) (:: apply Bool) (:: n Int) (:: x1 (curly AbstractVector T)) (:: x2 AbstractVecOrMat)) (<: T AbstractFloat)) (block (macrocall @jl_arpack_check_length :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:263 =#) x1 n) (if apply (block (macrocall @jl_arpack_check_length :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:265 =#) x2 n))) (if (call == which (inert SA)) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call < x y))) apply n x1 x2)) (elseif (block (call == which (inert SM))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call < (call abs x) (call abs y)))) apply n x1 x2)) (elseif (block (call == which (inert LA))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call > x y))) apply n x1 x2)) (elseif (block (call == which (inert LM))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call > (call abs x) (call abs y)))) apply n x1 x2)))))))))  └─ @ /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:224  Stacktrace:  [1] _renumber(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ssa_rewrites::Dict{Int64, Int64}, slot_rewrites::Dict{Int64, Int64}, label_table::Dict{Int64, Int64}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1097  [2] renumber_body(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, input_code::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, slot_rewrites::Dict{Int64, Int64})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1162  [3] compile_lambda(outer_ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1257  [4] linearize_ir(ctx::Base.JuliaLowering.ClosureConversionCtx{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1287  [5] core_lowering_hook(code::Any, mod::Module, file::String, line::UInt64, world::UInt64, _warn::Bool)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/hooks.jl:33  [6] include(mapexpr::Function, mod::Module, _path::String)  @ Base Base.jl:326  [7] top-level scope  @ ~/.julia/packages/GenericArpack/p8u6Z/src/GenericArpack.jl:16  [8] include(mod::Module, _path::String)  @ Base Base.jl:325  [9] include_package_for_output(pkg::Base.PkgId, input::String, syntax_version::VersionNumber, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt128}}, source::Nothing)  @ Base loading.jl:3303  [10] top-level scope  @ stdin:5  [11] eval(m::Module, e::Any)  @ Core boot.jl:522  [12] include_string(mapexpr::typeof(identity), mod::Module, code::String, filename::String)  @ Base loading.jl:3132  [13] include_string(m::Module, txt::String, fname::String)  @ Base loading.jl:3142 [inlined]  [14] exec_options(opts::Base.JLOptions)  @ Base client.jl:353  [15] _start()  @ Base client.jl:596 in expression starting at /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:224 in expression starting at /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/GenericArpack.jl:1 in expression starting at stdin:5 ✗ GenericArpack Precompilation completed after 36.63s ################################################################################ # Loading # Loading GenericArpack... ┌ Info: JuliaLowering threw given input: │ code = │ :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:224 =# Core.@doc "Sort the array X1 in the order specified by WHICH and optionally\napplies the permutation to the array X2.\n\nUsage:\ncall dsortr\n ( WHICH, APPLY, N, X1, X2 )\n\nArguments\nWHICH Character*2. (Input)\n 'LM' -> X1 is sorted into increasing order of magnitude.\n 'SM' -> X1 is sorted into decreasing order of magnitude.\n 'LA' -> X1 is sorted into increasing order of algebraic.\n 'SA' -> X1 is sorted into decreasing order of algebraic.\n\nAPPLY Logical. (Input)\n APPLY = .TRUE. -> apply the sorted order to X2.\n APPLY = .FALSE. -> do not apply the sorted order to X2.\n\nN Integer. (INPUT)\n Size of the arrays.\n\nX1 Double precision array of length N. (INPUT/OUTPUT)\n The array to be sorted.\n\nX2 Double precision array of length N. (INPUT/OUTPUT)\n Only referenced if APPLY = .TRUE.\n\nReturns: nothing\n\n" function dsortr(which::Symbol, apply::Bool, n::Int, x1::AbstractVector{T}, x2::AbstractVecOrMat) where T <: AbstractFloat │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:255 =# │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:263 =# │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:263 =# @jl_arpack_check_length x1 n │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:264 =# │ if apply │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:265 =# │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:265 =# @jl_arpack_check_length x2 n │ end │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:270 =# │ if which == :SA │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:271 =# │ _dsortr_loop(((x::T, y::T)->begin │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:271 =# │ x < y │ end), apply, n, x1, x2) │ elseif #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:272 =# which == :SM │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:273 =# │ _dsortr_loop(((x::T, y::T)->begin │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:273 =# │ abs(x) < abs(y) │ end), apply, n, x1, x2) │ elseif #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:274 =# which == :LA │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:275 =# │ _dsortr_loop(((x::T, y::T)->begin │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:275 =# │ x > y │ end), apply, n, x1, x2) │ elseif #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:276 =# which == :LM │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:277 =# │ _dsortr_loop(((x::T, y::T)->begin │ #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:277 =# │ abs(x) > abs(y) │ end), apply, n, x1, x2) │ end │ end) │ st0 = │ SyntaxTree with attributes mod,kind,var_id,toplevel_pure,scope_type,context,syntax_flags,name_val,meta,value,jl_source,is_toplevel_thunk,source │ [macrocall] | │ @doc :: Identifier | mod=Core │ :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:224 =#) :: Value | │ "Sort the array X1 in the order specified by WHICH and optionally\napplies the permutation to the array X2.\n\nUsage:\ncall dsortr\n ( WHICH, APPLY, N, X1, X2 )\n\nArguments\nWHICH Character*2. (Input)\n 'LM' -> X1 is sorted into increasing order of magnitude.\n 'SM' -> X1 is sorted into decreasing order of magnitude.\n 'LA' -> X1 is sorted into increasing order of algebraic.\n 'SA' -> X1 is sorted into decreasing order of algebraic.\n\nAPPLY Logical. (Input)\n APPLY = .TRUE. -> apply the sorted order to X2.\n APPLY = .FALSE. -> do not apply the sorted order to X2.\n\nN Integer. (INPUT)\n Size of the arrays.\n\nX1 Double precision array of length N. (INPUT/OUTPUT)\n The array to be sorted.\n\nX2 Double precision array of length N. (INPUT/OUTPUT)\n Only referenced if APPLY = .TRUE.\n\nReturns: nothing\n\n" :: Value | │ [function] | │ [where] | │ [call] | │ dsortr :: Identifier | │ [::] | │ which :: Identifier | │ Symbol :: Identifier | │ [::] | │ apply :: Identifier | │ Bool :: Identifier | │ [::] | │ n :: Identifier | │ Int :: Identifier | │ [::] | │ x1 :: Identifier | │ [curly] | │ AbstractVector :: Identifier | │ T :: Identifier | │ [::] | │ x2 :: Identifier | │ AbstractVecOrMat :: Identifier | │ [<:] | │ T :: Identifier | │ AbstractFloat :: Identifier | │ [block] | │ [macrocall] | │ @jl_arpack_check_length :: Identifier | │ :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:263 =#) :: Value | │ x1 :: Identifier | │ n :: Identifier | │ [if] | │ apply :: Identifier | │ [block] | │ [macrocall] | │ @jl_arpack_check_length :: Identifier | │ :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:265 =#) :: Value | │ x2 :: Identifier | │ n :: Identifier | │ [if] | │ [call] | │ == :: Identifier | │ which :: Identifier | │ [inert] | │ SA :: Identifier | │ [block] | │ [call] | │ _dsortr_loop :: Identifier | │ [->] | │ [tuple] | │ [::] | │ x :: Identifier | │ T :: Identifier | │ [::] | │ y :: Identifier | │ T :: Identifier | │ [block] | │ [call] | │ < :: Identifier | │ x :: Identifier | │ y :: Identifier | │ apply :: Identifier | │ n :: Identifier | │ x1 :: Identifier | │ x2 :: Identifier | │ [elseif] | │ [block] | │ [call] | │ == :: Identifier | │ which :: Identifier | │ [inert] | │ SM :: Identifier | │ [block] | │ [call] | │ _dsortr_loop :: Identifier | │ [->] | │ [tuple] | │ [::] | │ x :: Identifier | │ T :: Identifier | │ [::] | │ y :: Identifier | │ T :: Identifier | │ [block] | │ [call] | │ < :: Identifier | │ [call] | │ abs :: Identifier | │ x :: Identifier | │ [call] | │ abs :: Identifier | │ y :: Identifier | │ apply :: Identifier | │ n :: Identifier | │ x1 :: Identifier | │ x2 :: Identifier | │ [elseif] | │ [block] | │ [call] | │ == :: Identifier | │ which :: Identifier | │ [inert] | │ LA :: Identifier | │ [block] | │ [call] | │ _dsortr_loop :: Identifier | │ [->] | │ [tuple] | │ [::] | │ x :: Identifier | │ T :: Identifier | │ [::] | │ y :: Identifier | │ T :: Identifier | │ [block] | │ [call] | │ > :: Identifier | │ x :: Identifier | │ y :: Identifier | │ apply :: Identifier | │ n :: Identifier | │ x1 :: Identifier | │ x2 :: Identifier | │ [elseif] | │ [block] | │ [call] | │ == :: Identifier | │ which :: Identifier | │ [inert] | │ LM :: Identifier | │ [block] | │ [call] | │ _dsortr_loop :: Identifier | │ [->] | │ [tuple] | │ [::] | │ x :: Identifier | │ T :: Identifier | │ [::] | │ y :: Identifier | │ T :: Identifier | │ [block] | │ [call] | │ > :: Identifier | │ [call] | │ abs :: Identifier | │ x :: Identifier | │ [call] | │ abs :: Identifier | │ y :: Identifier | │ apply :: Identifier | │ n :: Identifier | │ x1 :: Identifier | │ x2 :: Identifier | │ │ st1 = │ SyntaxTree with attributes mod,kind,var_id,toplevel_pure,scope_type,context,syntax_flags,name_val,meta,value,jl_source,is_toplevel_thunk,source │ [block] | [old,SL(LwKGlGoy4Ki,Base.Docs,SL(5hNMcg4Vpi1,GenericArpack,)),@doc], │ [if] | [old,SL(LwKGlGoy4Ki,Base.Docs,SL(5hNMcg4Vpi1,GenericArpack,)),@doc], │ true :: Value | [old,SL(LwKGlGoy4Ki,Base.Docs,SL(5hNMcg4Vpi1,GenericArpack,)),@doc], │ [=] | [old,SL(LwKGlGoy4Ki,Base.Docs,SL(5hNMcg4Vpi1,GenericArpack,)),@doc], │ val :: Identifier | [old,SL(LwKGlGoy4Ki,Base.Docs,SL(5hNMcg4Vpi1,GenericArpack,)),@doc], │ [function] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [where] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ dsortr :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [::] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ which :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ Symbol :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [::] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ apply :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ Bool :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [::] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ n :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ Int :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [::] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x1 :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [curly] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ AbstractVector :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ T :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [::] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x2 :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ AbstractVecOrMat :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [<:] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ T :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ AbstractFloat :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [block] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [block] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [if] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ > :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ n :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ length :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x1 :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [block] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ throw :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ ArgumentError :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ string :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ "range 1:n=" :: Value | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ n :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ " out of bounds for x1 of length " :: Value | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ length :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x1 :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [if] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ apply :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [block] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [block] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [if] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ > :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ n :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ length :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x2 :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [block] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ throw :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ ArgumentError :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ string :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ "range 1:n=" :: Value | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ n :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ " out of bounds for x2 of length " :: Value | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ length :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x2 :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [if] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ == :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ which :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [inert] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ SA :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [block] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ _dsortr_loop :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [->] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [tuple] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [::] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ T :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [::] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ y :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ T :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [block] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ < :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ y :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ apply :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ n :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x1 :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x2 :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [elseif] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [block] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ == :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ which :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [inert] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ SM :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [block] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ _dsortr_loop :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [->] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [tuple] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [::] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ T :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [::] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ y :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ T :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [block] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ < :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ abs :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ abs :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ y :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ apply :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ n :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x1 :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x2 :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [elseif] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [block] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ == :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ which :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [inert] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ LA :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [block] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ _dsortr_loop :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [->] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [tuple] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [::] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ T :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [::] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ y :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ T :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [block] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ > :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ y :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ apply :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ n :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x1 :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x2 :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [elseif] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [block] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ == :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ which :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [inert] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ LM :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [block] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ _dsortr_loop :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [->] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [tuple] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [::] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ T :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [::] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ y :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ T :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [block] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ > :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ abs :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ abs :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ y :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ apply :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ n :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x1 :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ x2 :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(LwKGlGoy4Ki,Base.Docs,SL(5hNMcg4Vpi1,GenericArpack,)),@doc], │ Base.Docs.doc! :: Value | [old,SL(LwKGlGoy4Ki,Base.Docs,SL(5hNMcg4Vpi1,GenericArpack,)),@doc], │ GenericArpack :: Value | [old,SL(LwKGlGoy4Ki,Base.Docs,SL(5hNMcg4Vpi1,GenericArpack,)),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ Base.Docs.Binding :: Value | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ GenericArpack :: Value | [old,SL(GHi3SlbwDa,Base,SL(5hNMcg4Vpi1,GenericArpack,)),(. Base (inert @__MODULE__))], │ [inert] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc],jl_source=L47 │ dsortr :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ Base.Docs.docstr :: Value | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ Core.svec :: Value | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ "Sort the array X1 in the order specified by WHICH and optionally\napplies the permutation to the array X2.\n\nUsage:\ncall dsortr\n ( WHICH, APPLY, N, X1, X2 )\n\nArguments\nWHICH Character*2. (Input)\n 'LM' -> X1 is sorted into increasing order of magnitude.\n 'SM' -> X1 is sorted into decreasing order of magnitude.\n 'LA' -> X1 is sorted into increasing order of algebraic.\n 'SA' -> X1 is sorted into decreasing order of algebraic.\n\nAPPLY Logical. (Input)\n APPLY = .TRUE. -> apply the sorted order to X2.\n APPLY = .FALSE. -> do not apply the sorted order to X2.\n\nN Integer. (INPUT)\n Size of the arrays.\n\nX1 Double precision array of length N. (INPUT/OUTPUT)\n The array to be sorted.\n\nX2 Double precision array of length N. (INPUT/OUTPUT)\n Only referenced if APPLY = .TRUE.\n\nReturns: nothing\n\n" :: Value | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [call] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ Dict{Symbol, Any} :: Value | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ :path => "/home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl" :: Value | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ :linenumber => 224 :: Value | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ :module => GenericArpack :: Value | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [where] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [curly] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ Union :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [curly] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ Tuple :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ Symbol :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ Bool :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ Int :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [curly] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ AbstractVector :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ T :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ AbstractVecOrMat :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [curly] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ Tuple :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ T :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [<:] | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ T :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ AbstractFloat :: Identifier | [old,SL(5hNMcg4Vpi1,GenericArpack,),@doc], │ [if] | [old,SL(LwKGlGoy4Ki,Base.Docs,SL(5hNMcg4Vpi1,GenericArpack,)),@doc], │ true :: Value | [old,SL(LwKGlGoy4Ki,Base.Docs,SL(5hNMcg4Vpi1,GenericArpack,)),@doc], │ val :: Identifier | [old,SL(LwKGlGoy4Ki,Base.Docs,SL(5hNMcg4Vpi1,GenericArpack,)),@doc], │ │ file = "/home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl" │ line = 224 └ mod = GenericArpack ERROR: LoadError: LoweringError: #= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:271 =# - Found unexpected binding of kind static_parameter Expression:  #₂₃/T Containing expressions:  (= #₆₇/T #₂₃/T)  (= #₃ (call core.svec (call core.svec #₅₂/#dsortr##->###0 #₂₃/T #₂₃/T) (call core.svec) SourceLocation:/home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:271:0))  (= #₃ (call core.svec (call core.svec (function_type #₂₄/#->#) #₂₃/T #₂₃/T) (call core.svec) SourceLocation:/home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:271:0))  Detailed provenance:  #₂₃/T  ├─ T  │ ├─ T  │ │ └─ @ /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:271  │ └─ (macrocall @doc :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:224 =#) "Sort the array X1 in the order specified by WHICH and optionally\napplies the permutation to the array X2.\n\nUsage:\ncall dsortr\n ( WHICH, APPLY, N, X1, X2 )\n\nArguments\nWHICH Character*2. (Input)\n 'LM' -> X1 is sorted into increasing order of magnitude.\n 'SM' -> X1 is sorted into decreasing order of magnitude.\n 'LA' -> X1 is sorted into increasing order of algebraic.\n 'SA' -> X1 is sorted into decreasing order of algebraic.\n\nAPPLY Logical. (Input)\n APPLY = .TRUE. -> apply the sorted order to X2.\n APPLY = .FALSE. -> do not apply the sorted order to X2.\n\nN Integer. (INPUT)\n Size of the arrays.\n\nX1 Double precision array of length N. (INPUT/OUTPUT)\n The array to be sorted.\n\nX2 Double precision array of length N. (INPUT/OUTPUT)\n Only referenced if APPLY = .TRUE.\n\nReturns: nothing\n\n" (function (where (call dsortr (:: which Symbol) (:: apply Bool) (:: n Int) (:: x1 (curly AbstractVector T)) (:: x2 AbstractVecOrMat)) (<: T AbstractFloat)) (block (macrocall @jl_arpack_check_length :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:263 =#) x1 n) (if apply (block (macrocall @jl_arpack_check_length :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:265 =#) x2 n))) (if (call == which (inert SA)) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call < x y))) apply n x1 x2)) (elseif (block (call == which (inert SM))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call < (call abs x) (call abs y)))) apply n x1 x2)) (elseif (block (call == which (inert LA))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call > x y))) apply n x1 x2)) (elseif (block (call == which (inert LM))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call > (call abs x) (call abs y)))) apply n x1 x2)))))))))  │ └─ (macrocall @doc :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:224 =#) "Sort the array X1 in the order specified by WHICH and optionally\napplies the permutation to the array X2.\n\nUsage:\ncall dsortr\n ( WHICH, APPLY, N, X1, X2 )\n\nArguments\nWHICH Character*2. (Input)\n 'LM' -> X1 is sorted into increasing order of magnitude.\n 'SM' -> X1 is sorted into decreasing order of magnitude.\n 'LA' -> X1 is sorted into increasing order of algebraic.\n 'SA' -> X1 is sorted into decreasing order of algebraic.\n\nAPPLY Logical. (Input)\n APPLY = .TRUE. -> apply the sorted order to X2.\n APPLY = .FALSE. -> do not apply the sorted order to X2.\n\nN Integer. (INPUT)\n Size of the arrays.\n\nX1 Double precision array of length N. (INPUT/OUTPUT)\n The array to be sorted.\n\nX2 Double precision array of length N. (INPUT/OUTPUT)\n Only referenced if APPLY = .TRUE.\n\nReturns: nothing\n\n" (function (where (call dsortr (:: which Symbol) (:: apply Bool) (:: n Int) (:: x1 (curly AbstractVector T)) (:: x2 AbstractVecOrMat)) (<: T AbstractFloat)) (block (macrocall @jl_arpack_check_length :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:263 =#) x1 n) (if apply (block (macrocall @jl_arpack_check_length :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:265 =#) x2 n))) (if (call == which (inert SA)) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call < x y))) apply n x1 x2)) (elseif (block (call == which (inert SM))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call < (call abs x) (call abs y)))) apply n x1 x2)) (elseif (block (call == which (inert LA))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call > x y))) apply n x1 x2)) (elseif (block (call == which (inert LM))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call > (call abs x) (call abs y)))) apply n x1 x2)))))))))  │ └─ @ /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:224  └─ (macrocall @doc :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:224 =#) "Sort the array X1 in the order specified by WHICH and optionally\napplies the permutation to the array X2.\n\nUsage:\ncall dsortr\n ( WHICH, APPLY, N, X1, X2 )\n\nArguments\nWHICH Character*2. (Input)\n 'LM' -> X1 is sorted into increasing order of magnitude.\n 'SM' -> X1 is sorted into decreasing order of magnitude.\n 'LA' -> X1 is sorted into increasing order of algebraic.\n 'SA' -> X1 is sorted into decreasing order of algebraic.\n\nAPPLY Logical. (Input)\n APPLY = .TRUE. -> apply the sorted order to X2.\n APPLY = .FALSE. -> do not apply the sorted order to X2.\n\nN Integer. (INPUT)\n Size of the arrays.\n\nX1 Double precision array of length N. (INPUT/OUTPUT)\n The array to be sorted.\n\nX2 Double precision array of length N. (INPUT/OUTPUT)\n Only referenced if APPLY = .TRUE.\n\nReturns: nothing\n\n" (function (where (call dsortr (:: which Symbol) (:: apply Bool) (:: n Int) (:: x1 (curly AbstractVector T)) (:: x2 AbstractVecOrMat)) (<: T AbstractFloat)) (block (macrocall @jl_arpack_check_length :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:263 =#) x1 n) (if apply (block (macrocall @jl_arpack_check_length :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:265 =#) x2 n))) (if (call == which (inert SA)) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call < x y))) apply n x1 x2)) (elseif (block (call == which (inert SM))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call < (call abs x) (call abs y)))) apply n x1 x2)) (elseif (block (call == which (inert LA))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call > x y))) apply n x1 x2)) (elseif (block (call == which (inert LM))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call > (call abs x) (call abs y)))) apply n x1 x2)))))))))  └─ (macrocall @doc :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:224 =#) "Sort the array X1 in the order specified by WHICH and optionally\napplies the permutation to the array X2.\n\nUsage:\ncall dsortr\n ( WHICH, APPLY, N, X1, X2 )\n\nArguments\nWHICH Character*2. (Input)\n 'LM' -> X1 is sorted into increasing order of magnitude.\n 'SM' -> X1 is sorted into decreasing order of magnitude.\n 'LA' -> X1 is sorted into increasing order of algebraic.\n 'SA' -> X1 is sorted into decreasing order of algebraic.\n\nAPPLY Logical. (Input)\n APPLY = .TRUE. -> apply the sorted order to X2.\n APPLY = .FALSE. -> do not apply the sorted order to X2.\n\nN Integer. (INPUT)\n Size of the arrays.\n\nX1 Double precision array of length N. (INPUT/OUTPUT)\n The array to be sorted.\n\nX2 Double precision array of length N. (INPUT/OUTPUT)\n Only referenced if APPLY = .TRUE.\n\nReturns: nothing\n\n" (function (where (call dsortr (:: which Symbol) (:: apply Bool) (:: n Int) (:: x1 (curly AbstractVector T)) (:: x2 AbstractVecOrMat)) (<: T AbstractFloat)) (block (macrocall @jl_arpack_check_length :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:263 =#) x1 n) (if apply (block (macrocall @jl_arpack_check_length :(#= /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:265 =#) x2 n))) (if (call == which (inert SA)) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call < x y))) apply n x1 x2)) (elseif (block (call == which (inert SM))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call < (call abs x) (call abs y)))) apply n x1 x2)) (elseif (block (call == which (inert LA))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call > x y))) apply n x1 x2)) (elseif (block (call == which (inert LM))) (block (call _dsortr_loop (-> (tuple (:: x T) (:: y T)) (block (call > (call abs x) (call abs y)))) apply n x1 x2)))))))))  └─ @ /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:224  Stacktrace:  [1] _renumber(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ssa_rewrites::Dict{Int64, Int64}, slot_rewrites::Dict{Int64, Int64}, label_table::Dict{Int64, Int64}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1097  [2] renumber_body(ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, input_code::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, slot_rewrites::Dict{Int64, Int64})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1162  [3] compile_lambda(outer_ctx::Base.JuliaLowering.LinearIRContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1257  [4] linearize_ir(ctx::Base.JuliaLowering.ClosureConversionCtx{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/linear_ir.jl:1287  [5] core_lowering_hook(code::Any, mod::Module, file::String, line::UInt64, world::UInt64, _warn::Bool)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/hooks.jl:33  [6] include(mapexpr::Function, mod::Module, _path::String)  @ Base Base.jl:326  [7] top-level scope  @ ~/.julia/packages/GenericArpack/p8u6Z/src/GenericArpack.jl:16  [8] include(mod::Module, _path::String)  @ Base Base.jl:325  [9] include_package_for_output(pkg::Base.PkgId, input::String, syntax_version::VersionNumber, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt128}}, source::Nothing)  @ Base loading.jl:3303  [10] top-level scope  @ stdin:5  [11] eval(m::Module, e::Any)  @ Core boot.jl:522  [12] include_string(mapexpr::typeof(identity), mod::Module, code::String, filename::String)  @ Base loading.jl:3132  [13] include_string(m::Module, txt::String, fname::String)  @ Base loading.jl:3142 [inlined]  [14] exec_options(opts::Base.JLOptions)  @ Base client.jl:353  [15] _start()  @ Base client.jl:596 in expression starting at /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/simple.jl:224 in expression starting at /home/pkgeval/.julia/packages/GenericArpack/p8u6Z/src/GenericArpack.jl:1 in expression starting at stdin:5 1 dependency had output during precompilation: ┌ GenericArpack │ [Output was shown above] └ ERROR: The following 1 package failed to precompile: GenericArpack Failed to precompile GenericArpack [408c25d7-97fa-4992-8bd9-ce15f1a09fe9] to "/home/pkgeval/.julia/compiled/v1.14/GenericArpack/jl_fvHgnp" (ProcessExited(1)). Loading failed after 15.17s ERROR: LoadError: failed process: Process(`/opt/julia/bin/julia -C native -J/opt/julia/lib/julia/sys.so -g1 --check-bounds=yes --inline=yes --check-bounds=yes --pkgimages=existing -e 'using GenericArpack'`, ProcessExited(1)) [1] Stacktrace: [1] pipeline_error(proc::Base.Process) @ Base process.jl:612 [inlined] [2] run(::Cmd; wait::Bool) @ Base process.jl:525 [3] run(::Cmd) @ Base process.jl:522 [4] top-level scope @ /PkgEval.jl/scripts/evaluate.jl:197 [5] include(mod::Module, _path::String) @ Base Base.jl:325 [6] exec_options(opts::Base.JLOptions) @ Base client.jl:355 [7] _start() @ Base client.jl:596 in expression starting at /PkgEval.jl/scripts/evaluate.jl:188 PkgEval failed after 81.84s: package fails to precompile