We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f50f211 commit fbfbfa5Copy full SHA for fbfbfa5
src/math/lp/dioph_eq.cpp
@@ -254,7 +254,7 @@ namespace lp {
254
out << "bounds:\n";
255
for (unsigned v = 0; v < m_var_register.size(); ++v) {
256
unsigned j = m_var_register.local_to_external(v);
257
- out << "j" << j << ": ";
+ out << "j" << j << ":= " << lra.get_column_value(j) << ": ";
258
if (lra.column_has_lower_bound(j))
259
out << lra.column_lower_bound(j).x << " <= ";
260
out << "x" << v;
0 commit comments