Skip to content
Snippets Groups Projects
Commit 4d75e1c4 authored by Mathis's avatar Mathis
Browse files

new comments

parent 413b5578
No related branches found
No related tags found
No related merge requests found
......@@ -121,6 +121,9 @@ int main(int argc, char* argv[])
XCS xcs = XCS(parameter);
//informationparameter init
// if the ringBuffer parameters are changed, please init this specific ringBuffer
// into the RingBuffer.cc file (some are given at the end of the file)
ringBuffer<unsigned int, 50> last50Iterations;
unsigned steps=0;
unsigned int iterations = 0;
......
......@@ -121,6 +121,9 @@ int main(int argc, char* argv[])
XCS xcs = XCS(parameter);
//informationparameter init
// if the ringBuffer parameters are changed, please init this specific ringBuffer
// into the RingBuffer.cc file (some are given at the end of the file)
ringBuffer<unsigned int, 50> last50Iterations;
unsigned steps=0;
unsigned int iterations = 0;
......
......@@ -211,6 +211,9 @@ class ClassifierSet {
double actionSetSizeSum;
double averageActionSetSize;
double varianceActionSetSize;
// if the ringBuffer parameters are changed, please init this specific ringBuffer
// into the RingBuffer.cc file (some are given at the end of the file)
ringBuffer<int, 50> last50ActionSetSize;
};
......
......@@ -25,6 +25,8 @@ class MovingAvgTracker {
double getSmoothLearningValue();
private:
// if the ringBuffer parameters are changed, please init this specific ringBuffer
// into the RingBuffer.cc file (some are given at the end of the file)
ringBuffer<double, 2000> rb;
double learningValue;
......
......@@ -121,6 +121,9 @@ int main(int argc, char* argv[])
XCS xcs = XCS(parameter);
//informationparameter init
// if the ringBuffer parameters are changed, please init this specific ringBuffer
// into the RingBuffer.cc file (some are given at the end of the file)
ringBuffer<unsigned int, 50> last50Iterations;
unsigned steps=0;
unsigned int iterations = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment