Chris Coey
Chris Coey
OK the in-place cg! works, but gmres! (and lsmr!, lsqr! and others) errors: ``` julia> gmres!(x, B, b) ERROR: BoundsError: attempt to access 4-element view(::Array{Float64,2}, :, 1) with eltype Float64...
I would like to avoid copyto! anywhere possible. Maybe there's a different way to avoid that, like using the generic 5-arg mul! perhaps? #56
bump, I ran into this issue
Agreed - I'd like to try using this package and maybe contribute, but without a roadmap/plan I can't tell whether it's worth the effort.
I too am running into this inconvenient behavior 😄
JSON.jl doesn't suffer from this though, so I'll switch to that. ``` julia> JSON.parse("5.0") 5.0 julia> JSON3.read("5.0") 5 ```
Hmm I wonder if https://github.com/jump-dev/Ipopt.jl/pull/320 slash https://github.com/jump-dev/MathOptInterface.jl/issues/1397 may help here.
I'm a little confused about that point. if our problem has a bunch of ScalarQuadraticFunctions constraints and ScalarNonlinearFunction constraints, and we bridge the SQFs to SNFs, then we have a...
Ok, I'd be surprised if it made much difference in practice, but yeah @odow would have a better idea than me of course.