JuliaSmoothOptimizers / RipQP.jl

MIT License
29 stars 5 forks source link

Use `RipQP` for more types #140

Closed tmigot closed 2 years ago

tmigot commented 2 years ago

The following returns an error:

T = Float16
 A = rand(T, 4, 4)
b = rand(T, 4)
lls = LLSModel(A, b)
ripqp(lls)

and the error is:

ERROR: MethodError: no method matching RipQP.Regularization(::Float16, ::Float16, ::Float64, ::Float64, ::Symbol)
Closest candidates are:
  RipQP.Regularization(::T, ::T, ::T, ::T, ::Symbol) where T<:Real at C:\Users\tangi\.julia\packages\RipQP\0tSCl\src\types_definition.jl:419
tmigot commented 2 years ago

Close in #141