14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// along with this program. If not, see <http://www.gnu.org/licenses/>
//
//! Proximal bundle method implementation.
#[macro_use]
extern crate c_str_macro;
extern crate failure;
#[macro_use]
extern crate failure_derive;
extern crate itertools;
#[macro_use]
extern crate log;
/// Type used for real numbers throughout the library.
pub type Real = f64;
|
<
<
<
|
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// along with this program. If not, see <http://www.gnu.org/licenses/>
//
//! Proximal bundle method implementation.
#[macro_use]
extern crate c_str_macro;
extern crate itertools;
#[macro_use]
extern crate log;
/// Type used for real numbers throughout the library.
pub type Real = f64;
|