lbfgsb-sys 0.1.0

The package provides an interface to L-BFGS-B fortran routine
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate lbfgsb_sys;
#[test]
fn timer(){
    use lbfgsb_sys::timer as ffi;
    let mut time  = 0.0;
    unsafe{
        ffi::timer_(&mut time);
    }
    println!("{}",time);
}