Skip to content

Commit

Permalink
Use CUTEst_jll.jl v2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Dec 22, 2024
1 parent 87b0d0a commit afb5c73
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ SIFDecode_jll = "54dcf436-342f-53ea-8005-3708a1ae6c8c"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"

[compat]
CUTEst_jll = "=2.3.0"
CUTEst_jll = "=2.4.0"
Combinatorics = "1.0"
DataStructures = "0.18"
JSON = "0.21"
Expand Down
4 changes: 2 additions & 2 deletions gen/Project.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[deps]
Clang = "40e3b903-d033-50b4-a0cc-940c62c95e31"
CUTEst_jll = "bb5f6f25-f23d-57fd-8f90-3ef7bad1d825"
Clang = "40e3b903-d033-50b4-a0cc-940c62c95e31"
JuliaFormatter = "98e50ef6-434e-11e9-1051-2b60c6c9e899"

[compat]
CUTEst_jll = "2.4.0"
julia = "1.6"
CUTEst_jll = "2.2.5"
18 changes: 9 additions & 9 deletions src/libcutest.jl
Original file line number Diff line number Diff line change
Expand Up @@ -456,9 +456,9 @@ function cutest_cint_chprod_(libsif, status, n, m, goth, x, y, p, q)
q::Ptr{Float64})::Cvoid
end

function cutest_cint_chsprod_(libsif, status, n, m, goth, x, y, nnzp, indp, p, nnzr, indr, r)
ptr_cutest_cint_chsprod_ = Libdl.dlsym(libsif, :cutest_cint_chsprod_)
@ccall $ptr_cutest_cint_chsprod_(status::Ptr{Cint}, n::Ptr{Cint}, m::Ptr{Cint}, goth::Ptr{Bool},
function cutest_cint_cshprod_(libsif, status, n, m, goth, x, y, nnzp, indp, p, nnzr, indr, r)
ptr_cutest_cint_cshprod_ = Libdl.dlsym(libsif, :cutest_cint_cshprod_)
@ccall $ptr_cutest_cint_cshprod_(status::Ptr{Cint}, n::Ptr{Cint}, m::Ptr{Cint}, goth::Ptr{Bool},
x::Ptr{Float64}, y::Ptr{Float64}, nnzp::Ptr{Cint},
indp::Ptr{Cint}, p::Ptr{Float64}, nnzr::Ptr{Cint},
indr::Ptr{Cint}, r::Ptr{Float64})::Cvoid
Expand Down Expand Up @@ -1012,9 +1012,9 @@ function cutest_cint_chprod_s_(libsif, status, n, m, goth, x, y, p, q)
q::Ptr{Float32})::Cvoid
end

function cutest_cint_chsprod_s_(libsif, status, n, m, goth, x, y, nnzp, indp, p, nnzr, indr, r)
ptr_cutest_cint_chsprod_s_ = Libdl.dlsym(libsif, :cutest_cint_chsprod_s_)
@ccall $ptr_cutest_cint_chsprod_s_(status::Ptr{Cint}, n::Ptr{Cint}, m::Ptr{Cint}, goth::Ptr{Bool},
function cutest_cint_cshprod_s_(libsif, status, n, m, goth, x, y, nnzp, indp, p, nnzr, indr, r)
ptr_cutest_cint_cshprod_s_ = Libdl.dlsym(libsif, :cutest_cint_cshprod_s_)
@ccall $ptr_cutest_cint_cshprod_s_(status::Ptr{Cint}, n::Ptr{Cint}, m::Ptr{Cint}, goth::Ptr{Bool},
x::Ptr{Float32}, y::Ptr{Float32}, nnzp::Ptr{Cint},
indp::Ptr{Cint}, p::Ptr{Float32}, nnzr::Ptr{Cint},
indr::Ptr{Cint}, r::Ptr{Float32})::Cvoid
Expand Down Expand Up @@ -1572,9 +1572,9 @@ function cutest_cint_chprod_q_(libsif, status, n, m, goth, x, y, p, q)
q::Ptr{Float128})::Cvoid
end

function cutest_cint_chsprod_q_(libsif, status, n, m, goth, x, y, nnzp, indp, p, nnzr, indr, r)
ptr_cutest_cint_chsprod_q_ = Libdl.dlsym(libsif, :cutest_cint_chsprod_q_)
@ccall $ptr_cutest_cint_chsprod_q_(status::Ptr{Cint}, n::Ptr{Cint}, m::Ptr{Cint}, goth::Ptr{Bool},
function cutest_cint_cshprod_q_(libsif, status, n, m, goth, x, y, nnzp, indp, p, nnzr, indr, r)
ptr_cutest_cint_cshprod_q_ = Libdl.dlsym(libsif, :cutest_cint_cshprod_q_)
@ccall $ptr_cutest_cint_cshprod_q_(status::Ptr{Cint}, n::Ptr{Cint}, m::Ptr{Cint}, goth::Ptr{Bool},
x::Ptr{Float128}, y::Ptr{Float128}, nnzp::Ptr{Cint},
indp::Ptr{Cint}, p::Ptr{Float128}, nnzr::Ptr{Cint},
indr::Ptr{Cint}, r::Ptr{Float128})::Cvoid
Expand Down

0 comments on commit afb5c73

Please sign in to comment.