summaryrefslogtreecommitdiff
path: root/include/brain/neural_link.h
blob: f3d12a6257292d005899593c936ceec793d67c37 (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(std::weak_ptr<NeuralNode> input, double weight);
    double weightedActivation() const;
    
private:
    std::weak_ptr<NeuralNode> _input;
    double _weight;
};