pub type optimfn = Option<unsafe extern "C" fn(arg1: c_int, arg2: *mut f64, arg3: *mut c_void) -> f64>;
Expand description
main/optim.c
Aliased Type§
enum optimfn {
None,
Some(unsafe extern "C" fn(_: i32, _: *mut f64, _: *mut c_void) -> f64),
}