Oscar Dowson

Results 1419 comments of Oscar Dowson

Yeah. Ideally we would have merged this in before tagging a release of SCS_jll. We'll need to wait for the next upstream release. This motivated the component_owners mechanism so I...

> the version numbers do not need to agree. (This happens frequently in Yggdrasil.) I know, but I try very hard to keep them in sync. I'm not in a...

See https://github.com/JuliaPackaging/Yggdrasil/pull/12274

See https://github.com/lanl-ansi/PowerModels.jl/blob/685fbb260fe1a773aef2a89dc205e0525b42a030/src/core/admittance_matrix.jl#L187-L188

@ccoffrin there are zero tests that hit `calc_admittance_matrix_inv`? And if I do ```Julia using PowerModels data = PowerModels.parse_file("../test/data/matpower/case24.m") am = calc_admittance_matrix(data) ``` the admittance matrix is `ComplexF64`, so is `am_inv...

This can just be fixed in SymbolicWedderburn (https://github.com/kalmarek/SymbolicWedderburn.jl/pull/98). It's pretty weird for a package to define new types and methods _only_ for precompile, since you're generated stuff that can never...

It is possible to use a smaller test example that isn't half a million lines?

Closing because this works: ```julia julia> using JuMP, SCIP julia> begin n = 4 model = Model(SCIP.Optimizer) set_silent(model) set_attribute(model, "constraints/countsols/collect", true) @variable(model, 0 solution_summary(model; result = 2) solution_summary(; result =...

I'm not sure what this is asking for. I don't see any auxiliary variables, or where a norm form needs to be? https://github.com/lanl-ansi/PowerModels.jl/blob/685fbb260fe1a773aef2a89dc205e0525b42a030/src/core/objective.jl#L18-L26