What is the meaning of the "row_value" in the HighsSolution when solving a MIP model #1975
Answered
by
jajhall
linpeng0105
asked this question in
Q&A
-
This is a c++ example from the call_highs_from_cpp.cpp
When solving a MIP model, what is the meaning of the "row_value" in the HighsSolution |
Beta Was this translation helpful? Give feedback.
Answered by
jajhall
Oct 15, 2024
Replies: 2 comments 1 reply
-
The vector of row values is |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
linpeng0105
-
One more question, please~ When solving MIP, I want to set a dual-bound for a model before and during the solving, which interfaces should I call? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The vector of row values is$Ax$ , where $A$ is the constraint matrix, and $x$ is the vector of column (ie solution) values.