15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
//
//! Proximal bundle method implementation.
#[macro_use]
extern crate quick_error;
extern crate libc;
#[macro_use]
extern crate log;
/// Type used for real numbers throughout the library.
pub type Real = f64;
|
>
>
|
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;
|