derelict_extras-fann

A dynamic binding to the FANN library.


Keywords
library, binding, scientific
License
BSL-1.0
Install
dub fetch derelict_extras-fann --version 5.1.1

Documentation

DerelictFANN

Warning: this an unofficial Derelict binding.

A dynamic binding to FANN for the D Programming Language.

Please see the pages Building and Linking Derelict and Using Derelict, or information on how to build DerelictFANN and load the FANN library at run time. In the meantime, here's some sample code.

import derelict.fann.fann;

void main() {
    // Load the FANN library.
    DerelictFANN.load();

    // Now FANN functions can be called, or FANN wrapper be used
    ...
}