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

#include <memory>

#include "neural_node.h"

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