fann-sys-rs

Build Status Crates.io

Low-level Rust bindings to the Fast Artificial Neural Networks library. The wrapper fann-rs provides a safe interface on top of these.

Documentation

Usage

Add fann-sys and libc to the list of dependencies in your Cargo.toml:

toml [dependencies] fann-sys = "*" libc = "*"

and this to your crate root:

rust extern crate fann; extern crate libc;