lbfgsbrs 0.1.2

Rust port of L-BFGS-B-C
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![allow(dead_code)]
#![allow(mutable_transmutes)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(non_upper_case_globals)]
#![allow(unused_assignments)]
#![allow(unused_mut)]

pub mod lbfgsb;
pub mod linesearch;
pub mod linpack;
pub mod miniblas;
pub mod print;
pub mod algorithm;
pub mod subalgorithms;
pub mod timer;
pub mod debug;