/DerelictFANN

Derelict loader for the FANN library.

Primary LanguageD

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
    ...
}