summaryrefslogtreecommitdiff
path: root/include/brain/neural_link.h
blob: d89ac18183d4558e8eea7d3c58b549fd69d099c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <memory>

class NeuralLink
{
public:
    double weightedActivation();
    
private:
    std::shared_ptr<Neuron> _input;
    double _weight;
};