Oscar Dowson
Oscar Dowson
Okay, this now yields: ```Julia julia> A = [1 2im 3 4; 4im 3im 2 1; 4 5 6 7] 3×4 Matrix{Complex{Int64}}: 1+0im 0+2im 3+0im 4+0im 0+4im 0+3im 2+0im 1+0im...
You can add the solvers just for the tests, e.g., https://github.com/odow/SDDP.jl/blob/0490bea2c46787e1d4d63a5491ea0106c7fe70cf/Project.toml#L24-L30 I haven't tried optional dependencies.
Now available in SDDP.jl v1.5.0. See https://odow.github.io/SDDP.jl/dev/tutorial/pglib_opf/
Closing as stale and because this discussion seems resolved.
The `d` in: ``` z = piecewiselinear(model, x, d, fd) ``` is a discrete set of points. PiecewiseLinearOpt.jl doesn't get to see the expression `max(x, 0)`. It just gets to...
Closing because this is now fixed.
Closing because this is now fixed.
> one(::Quantity{T,D}) -> T > one(::Quantity{T,D}) -> Quantity{T,D} Where possible, I'd keep the `one(::Quantity{T,D}) -> Quantity{T,D}`. There are _so_ many places in the standard library that have implicit assumptions that...
The main things that would be good to have tests for are various combinations of `SparseArrays` and the `LinearAlgebra` matrix types. it mainly comes up when the matrix has a...
Some possible options: 1. Create a single unified expression graph (as opposed to the current expression tree). Change quite a lot of how ReverseAD processes functions etc. 2. Don't do...