TSSOS icon indicating copy to clipboard operation
TSSOS copied to clipboard

A sparse polynomial optimization tool based on the moment-SOS hierarchy.

Results 3 TSSOS issues
Sort by recently updated
recently updated
newest added

With version v0.18.3 of PowerModels, one line needs to be changed in modelopf.jl: `ref = PowerModels.build_ref(data)[:nw][0]` should become: `ref = PowerModels.build_ref(data)[:it][pm_it_sym][:nw][0]` Otherwise, one gets the following error: `LoadError: KeyError: key...

Is solving feasibility problems supported? I tried making the cost function 0, and I got an error about unable to access 0 element array.

I think lines like this: https://github.com/wangjie212/TSSOS/blob/10f935ddef96fc4680246dbb238dde87b88789b9/src/blockpop_uncons.jl#L65 Instead of converting with Int, you should call the ceiling function. Int does not convert non-integer floats to integer, but rather errors with Inexact...