Oscar Dowson
Oscar Dowson
Other questions: * Clarify low-rank property of the input data vs low-rank constraints on the output variables * How can the set be serialized to MOF? * What solvers support...
@mlubin's concern around the serialization wasn't parameterized sets, but if we allow ``` struct ConeWithInnerProducts{A
Nothing. We could do that. But the point is that we'd need to pick the matrix type. We couldn't support arbitrary user-defined matrices.
What's the status of this?
CI did, unfortunately, not pass.
```julia using Revise import Ipopt import JuMP import MathOptInterface as MOI import PGLib import PowerModels model = JuMP.direct_model(Ipopt.Optimizer()) pm = PowerModels.instantiate_model( PGLib.pglib("pglib_opf_case10000_goc"), PowerModels.ACPPowerModel, PowerModels.build_opf; jump_model = model, ); ipopt =...
I'll just merge this. There's little harm to it being in there, and it makes it easier to find than looking through old PRs.
Do you mean the various `# print(` statements that have been commented out? There are no live prints left in the package.
I don't understand
I started hacking something for this: ```Julia module SymbolicAD import MacroTools import MathOptInterface as MOI derivative(::Real, ::MOI.VariableIndex) = false function derivative(f::MOI.VariableIndex, x::MOI.VariableIndex) return ifelse(f == x, true, false) end function...