Brian Dandurand
Brian Dandurand
For now then, we need to use our fork until the PowerModels master version allows access to the needed constraint references. We shall keep our fork updated with the PowerModels...
After additional experience using PowerModels, it might be better that standard constraint names be established in a future version, rather than having the constraint generating functions return references. That way,...
It seems that at least a few of the example codes have not kept up with the change in interface, and the issue with BilinearHandler.h missing is just one instance....
The simple-bnb is OK once the makefile is configured.
Also, knapsack, simple-glob, and simple-qg compile and run correctly once the respective makefiles are (manually) configured.
Thank you.
The use of the MOI bridge interface seems to be sensible. I'm attempting the use of the bridge interface, but I need time to learn how to apply this with...
I found something like the following function to provide a dualizable model, where the input `jump_model` has a square PSD constraint. ``` function DualizeModel(jump_model) dualizable_model = MOI.Utilities.Model{Float64}() bridged_model = MOI.Bridges.Constraint.Square{Float64}(dualizable_model)...