cellular encoding
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
#pragma once
|
||||
|
||||
#include <EvolutionaryAlgorithms/GeneticPrograming/Instruction.h>
|
||||
|
||||
#include <vector>
|
||||
|
||||
namespace NeuralNetworks {
|
||||
namespace ConstructiveAlgorithms {
|
||||
namespace CelularEncoding {
|
||||
|
||||
class Cell;
|
||||
class CelularEncoding;
|
||||
|
||||
namespace Instruction {
|
||||
class Instruction : public EvolutionaryAlgorithm::GeneticPrograming::Instruction {
|
||||
public:
|
||||
virtual ~Instruction() {
|
||||
|
||||
}
|
||||
|
||||
// todo what implement??
|
||||
void operator()() {}
|
||||
|
||||
virtual void run(Cell &, CelularEncoding &, const std::vector<double> &) = 0;
|
||||
|
||||
protected:
|
||||
private:
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user