次のLOPがあります。
using JuMP, Cbc
productionProb = Model(solver = CbcSolver())
@variable(productionProb, x >= 0)
@variable(productionProb, y >= 0)
@objective(productionProb, Max, 7.8x + 7.1y)
@constraint(productionProb, assemblyCondition, (1/4)x + (1/3)y <= 90)
@constraint(productionProb, testingCondition, (1/8)x + (1/3)y <= 80)
solve(productionProb)
私はcbcソルバーを使用しており、ジュリアを使用してこの問題を解決しています。ただし、制約のシャドウ プライスを取得したいと考えています。特に、制約、assemblyCondition、および testingCondition のシャドウ プライスを取得したいと考えています。
これを行うためのコード/関数を知っている人はいますか? getdual() を試しましたが、うまくいきませんでした。