Struct fann_sys::fann_connection [] [src]

pub struct fann_connection {
    pub from_neuron: c_uint,
    pub to_neuron: c_uint,
    pub weight: fann_type,
}

Describes a connection between two neurons and its weight.

See Also

fann_get_connection_array, fann_set_weight_array

This structure appears in FANN >= 2.1.0.

Fields

from_neuron

Unique number used to identify source neuron

to_neuron

Unique number used to identify destination neuron

weight

The numerical value of the weight

Trait Implementations

Derived Implementations

impl PartialEq for fann_connection

fn eq(&self, __arg_0: &fann_connection) -> bool

fn ne(&self, __arg_0: &fann_connection) -> bool

impl Debug for fann_connection

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Clone for fann_connection

fn clone(&self) -> fann_connection

fn clone_from(&mut self, source: &Self)

impl Copy for fann_connection