Skip to content

Commit

Permalink
add newline after End statement in .lp files, correct(er) files and s…
Browse files Browse the repository at this point in the history
…hould help with coin-or/CoinUtils#145
  • Loading branch information
dlaehnemann committed Feb 18, 2021
1 parent b1d7e3e commit 620b5af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/format/lp_format.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 44,7 @@ impl LpFileFormat for LpProblem {
buffer.push_str(format!("\nBinary\n {}\n", &binaries_block).as_str());
}

buffer.push_str("\nEnd");
buffer.push_str("\nEnd\n");

buffer
}
Expand Down

0 comments on commit 620b5af

Please sign in to comment.