Skip to content

Commit fbfbfa5

Browse files
print column value
Signed-off-by: Nikolaj Bjorner <[email protected]>
1 parent f50f211 commit fbfbfa5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/math/lp/dioph_eq.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ namespace lp {
254254
out << "bounds:\n";
255255
for (unsigned v = 0; v < m_var_register.size(); ++v) {
256256
unsigned j = m_var_register.local_to_external(v);
257-
out << "j" << j << ": ";
257+
out << "j" << j << ":= " << lra.get_column_value(j) << ": ";
258258
if (lra.column_has_lower_bound(j))
259259
out << lra.column_lower_bound(j).x << " <= ";
260260
out << "x" << v;

0 commit comments

Comments
 (0)