Skip to content

Commit

Permalink
Merge pull request #42 from rust-or/coincbc-clone
Browse files Browse the repository at this point in the history
derive clone for CoinCbCProblem
  • Loading branch information
lovasoa authored Sep 23, 2023
2 parents 15c63e9 + 23b754c commit ab0239e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "good_lp"
version = "1.6.0"
version = "1.6.1"
authors = ["Ophir LOJKINE <[email protected]>"]
edition = "2018"
repository = "https://github.com/rust-or/good_lp"
Expand Down
1 change: 1 addition & 0 deletions src/solvers/coin_cbc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ pub fn coin_cbc(to_solve: UnsolvedProblem) -> CoinCbcProblem {
}

/// A coin-cbc model
#[derive(Clone, Default)]
pub struct CoinCbcProblem {
model: Model,
columns: Vec<Col>,
Expand Down

0 comments on commit ab0239e

Please sign in to comment.