Help Accessing the Dual Solutions for the Initial Solve of LP Relaxation #521
-
I have a subclass of a call arguments: code:
stdout (through initial solve - I assume I don't have an issue reading the mps file since it otherwise solves):
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Because of scaling and other issues, the external dual and reduced cost regions are not current at each iteration. You will need to access model->djRegion(0/1) and if model->rowScale() is null then use them, if not null scale by rowScale() and columnScale(). |
Beta Was this translation helpful? Give feedback.
Because of scaling and other issues, the external dual and reduced cost regions are not current at each iteration. You will need to access model->djRegion(0/1) and if model->rowScale() is null then use them, if not null scale by rowScale() and columnScale().