Skip to content
Snippets Groups Projects
Neuron.cpp 256 B

#include "Neuron.h"

Neuron::~Neuron() {

}

void Neuron::set_bias(double *b) {
    this->bias = b;
}

//template<class Archive>
//void Neuron::serialize(Archive & ar, const unsigned int version) {
//    ar << this->potential;
//    ar << this->state;
//}