Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Depend on itertools |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
970d026015376ea5246384ecfa69c82a |
| User & Date: | fifr 2017-11-20 17:58:42.322 |
Context
|
2017-11-21
| ||
| 10:06 | Reformat sources using `rustfmt` check-in: 998cbd7227 user: fifr tags: trunk | |
|
2017-11-20
| ||
| 17:58 | Depend on itertools check-in: 970d026015 user: fifr tags: trunk | |
| 09:45 | boxed: refactor `eta_cutval` check-in: a1314376da user: fifr tags: trunk | |
Changes
Changes to Cargo.toml.
1 2 3 4 5 6 7 8 9 10 11 12 13 | [package] name = "bundle" version = "0.4.0" authors = ["Frank Fischer <frank-fischer@shadow-soft.de>"] [dependencies] libc = "^0.2.6" failure = "^0.1.0" failure_derive = "^0.1.0" log = "^0.3.6" const-cstr = "^0.2.1" cplex-sys = "^0.3" | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | [package] name = "bundle" version = "0.4.0" authors = ["Frank Fischer <frank-fischer@shadow-soft.de>"] [dependencies] itertools = "^0.7.2" libc = "^0.2.6" failure = "^0.1.0" failure_derive = "^0.1.0" log = "^0.3.6" const-cstr = "^0.2.1" cplex-sys = "^0.3" |
| ︙ | ︙ |
Changes to src/lib.rs.
| ︙ | ︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | // // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/> // //! Proximal bundle method implementation. extern crate failure; #[macro_use] extern crate failure_derive; #[macro_use] extern crate const_cstr; #[macro_use] | > | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | // // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/> // //! Proximal bundle method implementation. extern crate itertools; extern crate failure; #[macro_use] extern crate failure_derive; #[macro_use] extern crate const_cstr; #[macro_use] |
| ︙ | ︙ |