Skip to content

Commit

Permalink
Update NeuralLink.h
Browse files Browse the repository at this point in the history
  • Loading branch information
Sovietmade committed Oct 18, 2013
1 parent 9ec58f4 commit b23f187
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions include/NeuralNetworks/NeuralLink.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ class NeuralLink
double GetErrorInFormationTerm( ){ return mErrorInformationTerm; };
void SetErrorInFormationTerm( double inEITerm ){ mErrorInformationTerm = inEITerm; };

void SetLastTranslatedSignal( double inLastTranslatedSignal ){ mLastTranslatedSignal = inLastTranslatedSignal; };
double GetLastTranslatedSignal( ){ return mLastTranslatedSignal; };
void SetLastTranslatedSignal( double inLastTranslatedSignal ){ mLastTranslatedSignal = inLastTranslatedSignal; };
double GetLastTranslatedSignal( ){ return mLastTranslatedSignal; };
protected:
double mWeightToNeuron;
double mWeightToNeuron;
Neuron<T> * mNeuronLinkedTo;
double mWeightCorrectionTerm;
double mErrorInformationTerm;
double mLastTranslatedSignal;
double mWeightCorrectionTerm;
double mErrorInformationTerm;
double mLastTranslatedSignal;
};


Expand Down

0 comments on commit b23f187

Please sign in to comment.