RsBundle  Diff

Differences From Artifact [461e86b24a]:

  • File src/lib.rs — part of check-in [b318be645a] at 2017-03-16 14:57:33 on branch trunk — Use `cplex-sys` crate for interfacing with cplex. (user: fifr size: 1637)

To Artifact [07a5c7baf8]:

  • File src/lib.rs — part of check-in [30e5f0f086] at 2017-03-16 20:51:51 on branch trunk — Use `const_cstr` for C-string literals. (user: fifr size: 1675)

15
16
17
18
19
20
21


22
23
24
25
26
27
28
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30







+
+







//

//! Proximal bundle method implementation.

#[macro_use]
extern crate quick_error;
extern crate libc;
#[macro_use]
extern crate const_cstr;

#[macro_use]
extern crate log;

/// Type used for real numbers throughout the library.
pub type Real = f64;