file renaming

This commit is contained in:
2014-10-02 18:42:19 +02:00
parent 8c1b406259
commit c2ddda35d9
11 changed files with 171 additions and 146 deletions

View File

@@ -1,25 +0,0 @@
#ifndef _NEURON_H_
#define _NEURON_H_
#include <vector>
namespace S{
class Neuron
{
public:
Neuron();
double getPotential() const;
void setPotential(double p);
double getWeight(unsigned int) const;
void setWeight(unsigned int i,double p);
bool activates(const std::vector<bool>);
protected:
double potential;
private:
std::vector<double> weights;
};
class SimpleNeuron: public Neuron
{
};
}
#endif

1
src/Neuron Symbolic link
View File

@@ -0,0 +1 @@
././Neuron.h