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
Hello, this package has been very helpful! But I got this error: "ArgumentError: reducing over an empty collection is not allowed" by running the following example in Julia 1.3.1:
Random.seed!(1234) n = 5 m = 3 P = randn(n,n) P = (P+P')/2 P = 2*P q = randn(n) A = randn(m,n) b = rand(m) rmax = 2.5 x=QPnorm.solve(P, q, A, b, zeros(n); r_min=0.0, r_max = rmax)
It looks like the error occurs in the maximum function in line 331 of qp_norm_boundary.jl. Could you please provide some help? Thanks!
Hello, this package has been very helpful! But I got this error: "ArgumentError: reducing over an empty collection is not allowed" by running the following example in Julia 1.3.1:
Random.seed!(1234)
n = 5
m = 3
P = randn(n,n)
P = (P+P')/2
P = 2*P
q = randn(n)
A = randn(m,n)
b = rand(m)
rmax = 2.5
x=QPnorm.solve(P, q, A, b, zeros(n); r_min=0.0, r_max = rmax)
It looks like the error occurs in the
maximum
function in line 331 ofqp_norm_boundary.jl
. Could you please provide some help? Thanks!The complete problem data are given below:
The text was updated successfully, but these errors were encountered: